Re: [us...@httpd] Duplicate log entries

2010-05-28 Thread David
I do not get sufficient hits at my website to be able to see something via mod_status within a reasonable period of time. This duplication may happen two or three times over a 24 hour period. "so the appearance of two requests is apparently not simply a logging issue" What other issues could it

Re: [us...@httpd] mod_rewrite/mod_ssl questions

2010-05-28 Thread Beto Limoun
Something I also found useful was to use the following directive. RewriteMap escaping int:unescape before my RW rules and changing the RW rules like this RewriteRule ^/user ${escaping:https://%{HTTP_HOST}%{REQUEST_URI}} [R,L] etc.. have a look at http://www.dracos.co.uk/code/apache-rewrite-pro

[us...@httpd] Running a fastCGI app as a specific user:group

2010-05-28 Thread Donovan Brooke
Hello, Ubuntu 9.04 Apache Apache/2.2.11 Sorry if this is long.. trying to give a little accurate background before I ask the question... I want to get a fastCGI app running as a specific user:group. I've set up a (Local) Name Based virtual host that has these characteristics: ---

Re: [us...@httpd] Greetings

2010-05-28 Thread Jeff Trawick
On Fri, May 28, 2010 at 12:37 PM, David wrote: > I'm getting duplicate listings in my access.log file. For example: > > 86.128.68.189 - - [28/May/2010:09:11:48 -0400] "GET /charts/chart8.JPG > HTTP/1.1" 200 805370 > "http://www.google.co.uk/imgres?imgurl=http://www.alliancesforhumanity.com/charts/

[us...@httpd] Greetings

2010-05-28 Thread David
I'm getting duplicate listings in my access.log file. For example: 86.128.68.189 - - [28/May/2010:09:11:48 -0400] "GET /charts/chart8.JPG HTTP/1.1" 200 805370 "http://www.google.co.uk/imgres?imgurl=http://www.alliancesforhumanity.com/charts/chart8.JPG&imgrefurl=http://www.alliancesforhumanity.c

Re: [us...@httpd] httpd vhost centralized logging

2010-05-28 Thread Jonas Eckerman
On 2010-05-24 11:16, James Corteciano wrote: I'm thinking to use logger tool for every httpd services running but it's not an ideal because it takes more resources in server. Let say there are 50 vhost in a server, then 100 logger apps will be running because 2 logger per vhost (ErrorLog & Custo

Re: [us...@httpd] Re: HTTP doesn't work after upgrading from 2.0.55 to 2.2.15

2010-05-28 Thread William A. Rowe Jr.
On 5/28/2010 3:08 AM, Chen Chien-Yu wrote: > Hi William, > > I gave you the incorrect information in the previous post. > > cgi_read_stdout() in cgi_bucket_read() in mod_cgi.c, the data length is > 806 followed by 0. (Not the 0 and 5 buckets) > then ap_core_output_filter() found a 0 length bucket

Re: [us...@httpd] graceful restart occasionally gives "could not bind" error

2010-05-28 Thread Raphael Bauduin
On Thu, May 27, 2010 at 6:00 PM, Scott Gifford wrote: > I don't have an answer for you, but here are a few troubleshooting tips I > have found helpful. Thx for the tips, I'll keep the list posted if I discover the origin of the problem. Raph > If you can make it happen pretty often, you could t

Re: [us...@httpd] graceful restart occasionally gives "could not bind" error

2010-05-28 Thread Raphael Bauduin
On Thu, May 27, 2010 at 4:17 PM, Jeff Trawick wrote: > On Wed, May 26, 2010 at 9:22 AM, Raphael Bauduin wrote: >> Hi, >> >> With an apache 2.2 running on FreeBSD > > which level of Apache? (2.2.9 had a change in this area of processing) > which level of FreeBSD? Here are the versions used: Free

Re: [us...@httpd] Re: HTTP doesn't work after upgrading from 2.0.55 to 2.2.15

2010-05-28 Thread Chen Chien-Yu
Hi William, I gave you the incorrect information in the previous post. cgi_read_stdout() in cgi_bucket_read() in mod_cgi.c, the data length is 806 followed by 0. (Not the 0 and 5 buckets) then ap_core_output_filter() found a 0 length bucket, and appended a last-chunk bucket? Thanks Best regards

Re: [us...@httpd] How to allow directory browsing to certain ip addresses only

2010-05-28 Thread Bertalan Voros
Hi Nilesh, This is basically what I want. +Indexes for certain ip addresses. IndexIgnore * for everione else. Does this make sense? On 25 May 2010 06:04, Nilesh Govindarajan wrote: > On Mon, May 24, 2010 at 7:42 PM, Bertalan Voros > wrote: > > Hello All, > > > > I'd like your help in the fol

Re: [us...@httpd] Re: HTTP doesn't work after upgrading from 2.0.55 to 2.2.15

2010-05-28 Thread Chen Chien-Yu
Hi William, This is the place I found the 0 and 5 length bucket, cgi_read_stdout() in cgi_bucket_read() in mod_cgi.c which is the function for reading the data from the CGI bucket. So can I say that mod_cgi is the module my Apache uses instead of the mod_cgid. (And I didn't see the mod_cgid throug