[users@httpd] Potential Bug in mod_file_cache.c

2012-06-13 Thread Ken Cheung
I observed a code clone in the following files. The second and third functions 
type cast the object after allocation using "apr_palloc" while the first 
function does not. I wonder if this is necessary in the function 
"create_server_config". Hope it helps.

function : create_server_config @ (file: 
"httpd-2.4.2/modules/cache/mod_file_cache.c", line: 119)~122
a_server_config *sconf = apr_palloc(p, sizeof(*sconf));

sconf->fileht = apr_hash_make(p);
return sconf;

function : create_setenvif_config @ (file: 
"httpd-2.4.2/modules/metadata/mod_setenvif.c", line: 135)~138
sei_cfg_rec *new = (sei_cfg_rec *) apr_palloc(p, sizeof(sei_cfg_rec));

new->conditionals = apr_array_make(p, 20, sizeof(sei_entry));
return (void *) new;

function : lb_hb_create_config @ (file: 
"httpd-2.4.2/modules/proxy/balancers/mod_lbmethod_heartbeat.c", line: 408)~412
lb_hb_ctx_t *ctx = (lb_hb_ctx_t *) apr_palloc(p, sizeof(lb_hb_ctx_t));

ctx->path = ap_server_root_relative(p, "logs/hb.dat");

return ctx;

[users@httpd] Lost a server ... was working fine

2012-06-13 Thread Lester Caine
While I have moved many of the server setups to Apache2.4.x with PHP5.4.x, I'd 
left one with 2.2 and PHP5.3 as I did not have the time to check out all of the 
mapping display system. This machine has just stopped working and I don't think 
I updated anything before it happened.


SUSE12.1, Apache and PHP from repo ( upgraded machines are all manually 
installed ) ...


OK knew if I started writing then the solution would pop up :)

The 'BT' ASDL router had apparently reset itself and lost all of the firewall 
settings. Now I THOUGH I had rulled that out of the equation when testing by 
accessing the machine in question via it's internal IP address but obviously not 
:( lsces.org.uk is back up again with everything working so all I need to work 
out now is how 10.0.0.1 is getting mapped to lsces.org.uk internally ... would 
have saved a lot of agro if it had accessed the machine direct as I was 
expecting it to do. So would 'Redirect' action that or am I looking for some DNS 
path problem ... localhost is getting 'redirected' as well ... so I think I 
suspect Apache here?


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] ProxyPass question

2012-06-13 Thread Daniel Ruggeri
On 6/13/2012 3:52 PM, Janos Dohanics wrote:
> Thanks Anne, this was what I needed.
>
> However, I got a new problem: I also want to protect the / directory
> with .htaccess, and that works fine. I assumed that this will also
> protect /Camera - evidently, not.
>
> Is there a way to force authentication to access the proxied resource?

You can accomplish this with a  block instead of a
 block. That may be the only change needed, depending on
the rest of your configuration.

-- 
Daniel Ruggeri


-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] ProxyPass question

2012-06-13 Thread Janos Dohanics
On Wed, 13 Jun 2012 13:20:50 +0200
Anne Blankert  wrote:

> If I understand your question correctly, think you need to configure:
> 
> ProxyPass /Camera/ http://10.10.10.249:7000/
> ProxyPass /discover.cgi http://10.10.10.249:7000/discover.cgi
> 
> 
> The ProxyPassReverse lines work only for redirects. /discover.cgi is
> not a redirect, but probably inside the content of one of your
> previous requests, so url /discover.cgi is NOT translated
> to /Camera/discover.cgi
> 
> 
> Anne Blankert

Thanks Anne, this was what I needed.

However, I got a new problem: I also want to protect the / directory
with .htaccess, and that works fine. I assumed that this will also
protect /Camera - evidently, not.

Is there a way to force authentication to access the proxied resource?

-- 
Janos Dohanics

-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Michael Felt
started with php build. 1st real error is a syntax error in the embedded
sqlite.

After building an external version of sqlite (3.6.22 was the last one I had
downloaded, haven not looked for a new one) I am stopping for the night.
Will keep posted.

Question: what are the minimum modules (e.g. gd, jpeg, etc. that need to be
included. By default most of these are not
being found. my approach will be to get php tp compile with minimal
arguments to ./configure and then add extra statements as needed.

Michael

On Wed, Jun 13, 2012 at 7:45 PM, Michael Felt  wrote:

> forgot to mention: no have not tried to compile php against 2.4.x yet.
> Will setup a test machine soon to try.
>
>
> On Wed, Jun 13, 2012 at 7:44 PM, Michael Felt  wrote:
>
>> I had tested httpd with xlCv7 and xlCv11 and gcc 4.6.2.
>>
>> The important thing I noticed is that if you compile apr with gcc you
>> must compile httpd with gcc as well, and v.v.
>> Noone noticed when they were "bundled" I expect.
>>
>> I also have a buildaix.ksh for both apr and apr-util, but I do not know
>> if those have made it into trunk yet. I can send them seperately if
>> interested. With apr and apr-util separate the httpd config and build goes
>> much faster.
>>
>>
>> On Wed, Jun 13, 2012 at 3:16 PM, Brian Gaber <
>> brian.ga...@tpsgc-pwgsc.gc.ca> wrote:
>>
>>> **
>>> Michael,
>>>
>>> I will try your buildaix.ksh script.  I have been using IBM's
>>> compiler (xlc, cc_r, cc).
>>>
>>> On related question, Have you successfully compiled PHP against
>>> Apache 2.4.2?  I have not.  I have tried PHP 5.2, 5.3 and 5.4 and all fail
>>> at some point.  Against Apache 2.2.x I have not problem compiling PHP.
>>>
>>> Cheers.
>>>
>>> Brian
>>>
>>>  --
>>> *From:* Michael Felt [mailto:mamf...@gmail.com]
>>> *Sent:* Tuesday, June 12, 2012 5:17 PM
>>> *To:* users@httpd.apache.org
>>> *Subject:* Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX
>>> 6.1 with gcc/g++
>>>
>>> There are some "more recent" gcc builds for AIX available via:
>>> http://www.perzl.org/aix/index.php?n=Main.Gcc
>>>
>>> *Current versions:*
>>>
>>>- AIX5L V5.1: v4.5.3-2
>>>- AIX5L V5.2: v4.6.3-2
>>>- AIX5L V5.3: v4.6.3-2
>>>- AIX V6.1: v4.6.3-2
>>>- AIX V7.1: v4.6.3-2
>>>
>>> RPM's being what they are - there are several packages that need to be
>>> installed as mentioned above.
>>>
>>> And, I would be very interested in hearing what your experiences are if
>>> you use the buildaix.ksh script (in ./build/aix directory). The result is
>>> (is suppossed to be) an installp installable file in build/aix.
>>>
>>> Regards,
>>> Michael
>>>
>>> On Wed, May 30, 2012 at 7:57 PM, Eric Covener  wrote:
>>>
 On Wed, May 30, 2012 at 1:38 PM, Reimer, George
  wrote:
 > My browser tells me that “It Works!”  but it took a couple days of
 banging
 > my head against the wall. I encountered the following rough spots and
 > eventually stumbled over their solutions as noted:

 can you share your gcc experience here in the wiki:

 http://wiki.apache.org/httpd/AIXPlatform

 -
 To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
 For additional commands, e-mail: users-h...@httpd.apache.org


>>>
>>
>


Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Michael Felt
forgot to mention: no have not tried to compile php against 2.4.x yet. Will
setup a test machine soon to try.

On Wed, Jun 13, 2012 at 7:44 PM, Michael Felt  wrote:

> I had tested httpd with xlCv7 and xlCv11 and gcc 4.6.2.
>
> The important thing I noticed is that if you compile apr with gcc you must
> compile httpd with gcc as well, and v.v.
> Noone noticed when they were "bundled" I expect.
>
> I also have a buildaix.ksh for both apr and apr-util, but I do not know if
> those have made it into trunk yet. I can send them seperately if
> interested. With apr and apr-util separate the httpd config and build goes
> much faster.
>
>
> On Wed, Jun 13, 2012 at 3:16 PM, Brian Gaber <
> brian.ga...@tpsgc-pwgsc.gc.ca> wrote:
>
>> **
>> Michael,
>>
>> I will try your buildaix.ksh script.  I have been using IBM's
>> compiler (xlc, cc_r, cc).
>>
>> On related question, Have you successfully compiled PHP against
>> Apache 2.4.2?  I have not.  I have tried PHP 5.2, 5.3 and 5.4 and all fail
>> at some point.  Against Apache 2.2.x I have not problem compiling PHP.
>>
>> Cheers.
>>
>> Brian
>>
>>  --
>> *From:* Michael Felt [mailto:mamf...@gmail.com]
>> *Sent:* Tuesday, June 12, 2012 5:17 PM
>> *To:* users@httpd.apache.org
>> *Subject:* Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1
>> with gcc/g++
>>
>> There are some "more recent" gcc builds for AIX available via:
>> http://www.perzl.org/aix/index.php?n=Main.Gcc
>>
>> *Current versions:*
>>
>>- AIX5L V5.1: v4.5.3-2
>>- AIX5L V5.2: v4.6.3-2
>>- AIX5L V5.3: v4.6.3-2
>>- AIX V6.1: v4.6.3-2
>>- AIX V7.1: v4.6.3-2
>>
>> RPM's being what they are - there are several packages that need to be
>> installed as mentioned above.
>>
>> And, I would be very interested in hearing what your experiences are if
>> you use the buildaix.ksh script (in ./build/aix directory). The result is
>> (is suppossed to be) an installp installable file in build/aix.
>>
>> Regards,
>> Michael
>>
>> On Wed, May 30, 2012 at 7:57 PM, Eric Covener  wrote:
>>
>>> On Wed, May 30, 2012 at 1:38 PM, Reimer, George
>>>  wrote:
>>> > My browser tells me that “It Works!”  but it took a couple days of
>>> banging
>>> > my head against the wall. I encountered the following rough spots and
>>> > eventually stumbled over their solutions as noted:
>>>
>>> can you share your gcc experience here in the wiki:
>>>
>>> http://wiki.apache.org/httpd/AIXPlatform
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
>>> For additional commands, e-mail: users-h...@httpd.apache.org
>>>
>>>
>>
>


Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Michael Felt
I had tested httpd with xlCv7 and xlCv11 and gcc 4.6.2.

The important thing I noticed is that if you compile apr with gcc you must
compile httpd with gcc as well, and v.v.
Noone noticed when they were "bundled" I expect.

I also have a buildaix.ksh for both apr and apr-util, but I do not know if
those have made it into trunk yet. I can send them seperately if
interested. With apr and apr-util separate the httpd config and build goes
much faster.

On Wed, Jun 13, 2012 at 3:16 PM, Brian Gaber
wrote:

> **
> Michael,
>
> I will try your buildaix.ksh script.  I have been using IBM's compiler
> (xlc, cc_r, cc).
>
> On related question, Have you successfully compiled PHP against
> Apache 2.4.2?  I have not.  I have tried PHP 5.2, 5.3 and 5.4 and all fail
> at some point.  Against Apache 2.2.x I have not problem compiling PHP.
>
> Cheers.
>
> Brian
>
>  --
> *From:* Michael Felt [mailto:mamf...@gmail.com]
> *Sent:* Tuesday, June 12, 2012 5:17 PM
> *To:* users@httpd.apache.org
> *Subject:* Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1
> with gcc/g++
>
> There are some "more recent" gcc builds for AIX available via:
> http://www.perzl.org/aix/index.php?n=Main.Gcc
>
> *Current versions:*
>
>- AIX5L V5.1: v4.5.3-2
>- AIX5L V5.2: v4.6.3-2
>- AIX5L V5.3: v4.6.3-2
>- AIX V6.1: v4.6.3-2
>- AIX V7.1: v4.6.3-2
>
> RPM's being what they are - there are several packages that need to be
> installed as mentioned above.
>
> And, I would be very interested in hearing what your experiences are if
> you use the buildaix.ksh script (in ./build/aix directory). The result is
> (is suppossed to be) an installp installable file in build/aix.
>
> Regards,
> Michael
>
> On Wed, May 30, 2012 at 7:57 PM, Eric Covener  wrote:
>
>> On Wed, May 30, 2012 at 1:38 PM, Reimer, George
>>  wrote:
>> > My browser tells me that “It Works!”  but it took a couple days of
>> banging
>> > my head against the wall. I encountered the following rough spots and
>> > eventually stumbled over their solutions as noted:
>>
>> can you share your gcc experience here in the wiki:
>>
>> http://wiki.apache.org/httpd/AIXPlatform
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
>> For additional commands, e-mail: users-h...@httpd.apache.org
>>
>>
>


Re: [users@httpd] Access rules in an intranet

2012-06-13 Thread Anam Ali Khan
Hi,

Insert "Directory" block in virtual host container (configuration). It seems 
you have added in that area where  option is not allowed.

-Anam




 From: Luís de Sousa 
To: users@httpd.apache.org; Anam Ali Khan  
Sent: Wednesday, 13 June 2012, 11:52
Subject: Re: [users@httpd] Access rules in an intranet
 

Hi Anam,

Apache complains about it: "Directory not allowed here". I suppose it doesn't 
like having two nested Directory blocks.

Thank you in any case.


On 12 June 2012 20:54, Anam Ali Khan  wrote:

Try the following configuration:
>
>
>
>Order deny,allow
>deny from all
>allow from 10.215.1.0
>
>
>
>Replace "phppgadmin location" with the actual location whereyou have installed 
>your application.
>
>
>Hope it will solve :)
>
>
>
>-Anam
>
>
>

RE: [users@httpd] Attack on my reverse proxy server

2012-06-13 Thread Ruiyuan Jiang
Thanks Matus

Actually we see a lot of POST command from lots different IPs around the world 
and our site was took down (very slow).

-Original Message-
From: Matus UHLAR - fantomas [mailto:uh...@fantomas.sk] 
Sent: Tuesday, June 12, 2012 7:05 AM
To: users@httpd.apache.org
Subject: Re: [users@httpd] Attack on my reverse proxy server

On 12.06.12 00:42, Ruiyuan Jiang wrote:
>We see some attack on our apache reverse proxy server.
>
>180.211.101.213 - - [11/Jun/2012:11:30:00 -400] "POST / HTTP/1.0" 301 324
>201.243.47.144 - - [11/Jun/2012:11:30:00 -400] "POST / HTTP/1.0" 400 226
>113.162.230.163 - - [11/Jun/2012:11:30:00 -400] "POST / HTTP/1.0" 503 323
>
>How can we block those activities on the apache server? Thanks.

if your server is accessible from the internet, such attacks _will_ come.
you should make sure that such attacks won't affect its functionality.

you can watch logs for that kind of activities and e.g. block source 
IPs in firewall (a.g. using fail2ban).

There apparently are apache modules that can to something similar 
internally.
-- 
Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
A day without sunshine is like, night.

-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org




This message (including any attachments) is intended
solely for the specific individual(s) or entity(ies) named
above, and may contain legally privileged and
confidential information. If you are not the intended 
recipient, please notify the sender immediately by 
replying to this message and then delete it.
Any disclosure, copying, or distribution of this message,
or the taking of any action based on it, by other than the
intended recipient, is strictly prohibited.


-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



RE: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Brian Gaber
Michael,

I will try your buildaix.ksh script.  I have been using IBM's compiler 
(xlc, cc_r, cc).

On related question, Have you successfully compiled PHP against Apache 
2.4.2?  I have not.  I have tried PHP 5.2, 5.3 and 5.4 and all fail at some 
point.  Against Apache 2.2.x I have not problem compiling PHP.

Cheers.

Brian


From: Michael Felt [mailto:mamf...@gmail.com]
Sent: Tuesday, June 12, 2012 5:17 PM
To: users@httpd.apache.org
Subject: Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with 
gcc/g++

There are some "more recent" gcc builds for AIX available via: 
http://www.perzl.org/aix/index.php?n=Main.Gcc

Current versions:

 *   AIX5L V5.1: v4.5.3-2
 *   AIX5L V5.2: v4.6.3-2
 *   AIX5L V5.3: v4.6.3-2
 *   AIX V6.1: v4.6.3-2
 *   AIX V7.1: v4.6.3-2

RPM's being what they are - there are several packages that need to be 
installed as mentioned above.

And, I would be very interested in hearing what your experiences are if you use 
the buildaix.ksh script (in ./build/aix directory). The result is (is suppossed 
to be) an installp installable file in build/aix.

Regards,
Michael

On Wed, May 30, 2012 at 7:57 PM, Eric Covener 
mailto:cove...@gmail.com>> wrote:
On Wed, May 30, 2012 at 1:38 PM, Reimer, George
mailto:george.rei...@fisglobal.com>> wrote:
> My browser tells me that "It Works!"  but it took a couple days of banging
> my head against the wall. I encountered the following rough spots and
> eventually stumbled over their solutions as noted:

can you share your gcc experience here in the wiki:

http://wiki.apache.org/httpd/AIXPlatform

-
To unsubscribe, e-mail: 
users-unsubscr...@httpd.apache.org
For additional commands, e-mail: 
users-h...@httpd.apache.org




Re: [users@httpd] ProxyPass question

2012-06-13 Thread Anne Blankert

If I understand your question correctly, think you need to configure:

ProxyPass /Camera/ http://10.10.10.249:7000/
ProxyPass /discover.cgi http://10.10.10.249:7000/discover.cgi


The ProxyPassReverse lines work only for redirects. /discover.cgi is not a 
redirect, but probably inside the content of one of your previous requests, so 
url /discover.cgi is NOT translated to /Camera/discover.cgi


Anne Blankert

On 13-6-2012 10:17, Janos Dohanics wrote:

Hello List,

I need to proxy a DVR's built-in web server. I have this in
httpd-ssl.conf:

ProxyPass /Camera/ http://10.10.10.249:7000/
ProxyPassReverse /Camera/ http://10.10.10.249:7000/

The DVR's web page gets displayed - but not all of it. Here is the
snippet of the log file:

141.158.70.143 - - [13/Jun/2012:00:57:06 -0400] "GET /Camera/ HTTP/1.1" 200 2602
141.158.70.143 - - [13/Jun/2012:00:57:06 -0400] "GET /Camera/js/drag.js 
HTTP/1.1" 200 5031
[...]
141.158.70.143 - - [13/Jun/2012:00:57:12 -0400] "GET /Camera/system_js/config.js 
HTTP/1.1" 200 10911
141.158.70.143 - - [13/Jun/2012:00:57:14 -0400] "POST /discover.cgi?ALL 
HTTP/1.1" 404 210
[...]
141.158.70.143 - - [13/Jun/2012:00:57:14 -0400] "GET /xml/dvr/english/webpage.xml 
HTTP/1.1" 404 225
141.158.70.143 - - [13/Jun/2012:00:57:14 -0400] "GET /xml/dvr/english/webpage.xml 
HTTP/1.1" 404 225

The correct requests for the 404 items are of course /Camera/discover.cgi?
ALL and /Camera/xml/dvr/english/webpage.xml

Would you please advise?





-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] Uncompressing incoming requests

2012-06-13 Thread Abhi Auradkar
Hi Nick, 

  I have one more module(weblogic apache plugin) loaded. I am not sure what it 
does and I don't have the source code for it. 
Is there a way to tell apache that always invoke mod_deflate before it calls 
any other filters? 

Thanks,



From: Nick Kew 
To: users@httpd.apache.org 
Sent: Friday, June 8, 2012 4:53 AM
Subject: Re: [users@httpd] Uncompressing incoming requests

On Thu, 7 Jun 2012 08:33:11 -0700 (PDT)
Abhi Auradkar  wrote:

> Hi Nick, 
> 
> To test it futher I gzipped a local file and posted it apache using 'ab' (I 
> had set the content-encoding header as well')
> Even then I see the same result. It logging the same error about magic bytes 
> not matching. 
> 
> Any pointers to mistakes that I am making? 

Interesting.

There's a similar error message to yours in 2.4, but not in 2.2:

        /* We didn't get the magic bytes. */
        if (len != 10 ||
            deflate_hdr[0] != deflate_magic[0] ||
            deflate_hdr[1] != deflate_magic[1]) {
            ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01387) 
"Zlib: Invalid header");

If that check is incorrect, something needs fixing.
Bug me if I don't get round to checking it myself!

Is it possible you have some other filter that's
corrupting the byte stream ahead of mod_deflate?
Or some other encoding that's not correctly handled?

-- 
Nick Kew

-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



[users@httpd] ProxyPass question

2012-06-13 Thread Janos Dohanics
Hello List,

I need to proxy a DVR's built-in web server. I have this in
httpd-ssl.conf:

ProxyPass /Camera/ http://10.10.10.249:7000/
ProxyPassReverse /Camera/ http://10.10.10.249:7000/

The DVR's web page gets displayed - but not all of it. Here is the
snippet of the log file:

141.158.70.143 - - [13/Jun/2012:00:57:06 -0400] "GET /Camera/ HTTP/1.1" 200 2602
141.158.70.143 - - [13/Jun/2012:00:57:06 -0400] "GET /Camera/js/drag.js 
HTTP/1.1" 200 5031
[...]
141.158.70.143 - - [13/Jun/2012:00:57:12 -0400] "GET 
/Camera/system_js/config.js HTTP/1.1" 200 10911
141.158.70.143 - - [13/Jun/2012:00:57:14 -0400] "POST /discover.cgi?ALL 
HTTP/1.1" 404 210
[...]
141.158.70.143 - - [13/Jun/2012:00:57:14 -0400] "GET 
/xml/dvr/english/webpage.xml HTTP/1.1" 404 225
141.158.70.143 - - [13/Jun/2012:00:57:14 -0400] "GET 
/xml/dvr/english/webpage.xml HTTP/1.1" 404 225

The correct requests for the 404 items are of course /Camera/discover.cgi?
ALL and /Camera/xml/dvr/english/webpage.xml

Would you please advise?

-- 
Janos Dohanics

-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [users@httpd] Access rules in an intranet

2012-06-13 Thread Luís de Sousa
Hi Eric,

For each access to the phppgadmin folder I'm getting this line at the error
log:

158.64.4.14 - - [13/Jun/2012:08:51:21 +0200] "GET /phppgadmin/ HTTP/1.1"
403 510 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0)
Gecko/20100101 Firefox/13.0"

It doesn't say much to me. Thank you for answering.

On 12 June 2012 16:50, Eric Covener  wrote:

>
> What do your error and access log say?
>
> -
> To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
> For additional commands, e-mail: users-h...@httpd.apache.org
>
>