[users@httpd] apache 2.4.1, regression, caching forward proxy configuration

2012-03-01 Thread Juergen Daubert
Hello, I'm using apache, instead of squid, as a caching forwarding proxy for my intranet. I've converted my old 2.2 configuration to 2.4, see below. The proxy part is still working fine, but caching to disk doesn't work anymore. Nothing is written into the CacheRoot, no errors in the logs.

[users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi everybody, I'm having problems with my Apache. Apache's log of my server is growing a lot because somebody tries to execute this file cgi-bin/cbws1084.dll that doesn't exist. Anybody can tell me if is possible disable this or how can I do to solve it? Thanks. Best regards, Toni. --

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Steve Swift
You could alias /cgi-bin/cbws1084.dll to /sod_off.html 2012/3/1 Antonio Fernández Pérez antoniofernan...@fabergames.com Hi everybody, I'm having problems with my Apache. Apache's log of my server is growing a lot because somebody tries to execute this file cgi-bin/cbws1084.dll that doesn't

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi Steve Thanks for your reply. I don't understand what I should to do. Can you explain me it again? Thanks. Best regards, Toni. El 1 de marzo de 2012 12:44, Steve Swift swi...@swiftys.org.uk escribió: You could alias /cgi-bin/cbws1084.dll to /sod_off.html 2012/3/1 Antonio Fernández Pérez

Re: [users@httpd] Apache httpd 2.4.1 source code

2012-03-01 Thread Eric Covener
On Thu, Mar 1, 2012 at 7:02 AM, Harsimranjit singh Kler simran...@gmail.com wrote: Hi Where i can get source code bundle  for httpd 2.4.1? The download page on http://httpd.apache.org/ is mostly links to source code. Using subversion to work with the source is described here:

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Mark Montague
On March 1, 2012 6:48 , =?ISO-8859-1?Q?Antonio_Fern=E1ndez_P=E9rez?= antoniofernan...@fabergames.com wrote: 2012/3/1 Antonio Fernández Pérez antoniofernan...@fabergames.com mailto:antoniofernan...@fabergames.com: I'm having problems with my Apache. Apache's log of my server

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Steve Swift
My apologies; gmail disguised the Spanish so I didn't realise until too late. I should have been more careful with my English. If you added: Alias /cgi-bin/cbws1084.dll /var/apache2/html/go_away.html ... to your apache configuration, then any request for /cgi-bin/cbws1084.dll would be served

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi again, I have tried to configure this in my virtualhost of Apache but does not works. I have defined in virtualhost config file this: Alias /cgi-bin/cbws1084.dll /var/www/go_away.html Then, I have executed #service apache2 reload, the Apache's error log continues growing a lot (because

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
I put an error log output. Thanks, [Thu Mar 01 16:31:10 2012] [error] [client 80.24.29.20] script not found or unable to stat: /var/www/www.fabergames.net/cgi-bin/cbws1084x.dll [Thu Mar 01 16:31:12 2012] [error] [client 88.23.110.4] script not found or unable to stat:

Re: [users@httpd] apache 2.4.1, regression, caching forward proxy configuration

2012-03-01 Thread Nick Kew
On Thu, 1 Mar 2012 12:34:22 +0100 Juergen Daubert j...@jue.li wrote: Any ideas or suggestions? Set Loglevel to debug, or if necessary high-level trace, for the relevant modules. -- Nick Kew - The official User-To-User

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Thanks for your help. I have gotten it doing this: AliasMatch ^/cgi-bin/(.*)\.dll$ /var/www/go_away.html Now Apache doesn't log errors about dll loads. Do you think that is it correct? Thanks. Best regards, Toni. El 1 de marzo de 2012 16:32, Antonio Fernández Pérez

Re: [users@httpd] apache 2.4.1, regression, caching forward proxy configuration

2012-03-01 Thread Juergen Daubert
On Thu, Mar 01, 2012 at 03:38:10PM +, Nick Kew wrote: On Thu, 1 Mar 2012 12:34:22 +0100 Juergen Daubert j...@jue.li wrote: Any ideas or suggestions? Set Loglevel to debug, or if necessary high-level trace, for the relevant modules. Thanks for the hint but I've tried that already,

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Hi again, My apologies for these messages. Now, I have checked it and is growing the access log file. How can I do to deny these requests? I'm trying to configure Apache to deny all requests that tries to execute .dll files ind cgi-bin directory. Any idea? I don't know how can I do it. Thanks.

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Mark Montague
On March 1, 2012 11:40 , =?ISO-8859-1?Q?Antonio_Fern=E1ndez_P=E9rez?= antoniofernan...@fabergames.com wrote: My apologies for these messages. Now, I have checked it and is growing the access log file. How can I do to deny these requests? I'm trying to configure Apache to deny all requests that

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Tom Evans
2012/3/1 Antonio Fernández Pérez antoniofernan...@fabergames.com Hi again, My apologies for these messages. Now, I have checked it and is growing the access log file. How can I do to deny these requests? I'm trying to configure Apache to deny all requests that tries to execute .dll files ind

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Jim Jagielski
Which do you want: to stop the logfiles from growing or deny the requests? Or both? On Mar 1, 2012, at 11:40 AM, Antonio Fernández Pérez wrote: Hi again, My apologies for these messages. Now, I have checked it and is growing the access log file. How can I do to deny these requests? I'm

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Thanks for all answers. I had some doubts about this. I think that is interesting log all data (accesses or errors). I 'm afraid these logs are growing a lot, I don't know if this is bad. I should to define some directives with my partners and we should to decide what to do with this. Thanks for

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Anam Ali Khan
You can try following configuration in Apache virtual host container. LocationMatch ^[/]cgi-bin[/](*)\.dll)$ Order deny,allow Deny from all /LocationMatch SetEnvIfNoCase Request_URI ^[/]cgi-bin[/](*)\.dll)$ dontlog CustomLog/var/log/httpd/access_log combined env=!dontlog First will deny allow

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Anam Ali Khan
Place SetEnvIfNoCase in a single line. Sorrt, first will deny ALL requests that ending in dll extension and next directives will not logged those requests in Apache logs. Thanks, Anam From: Anam Ali Khan anamalik...@yahoo.com To: users@httpd.apache.org

[users@httpd] public_html directory authentication

2012-03-01 Thread John D
I'm running Apache/2.2.3 on a centos 5 server and trying to setup authentication for a subdirectory in a user's public_html folder. I created a .htaccess file and .htpasswd file in that subdirectory with permissions 0644. But now the subdirectory does not show up on the web page. In my httpd.conf

RE: [users@httpd] apache 2.4.1, regression, caching forward proxy configuration

2012-03-01 Thread Rapp, James
Any ideas or suggestions? Try the cache status logging added in 2.4: http://httpd.apache.org/docs/2.4/mod/mod_cache.html#status This worked for me in one of the older pre-release versions (2.3) but I admit I have not yet configured with 2.4. Jim -Original Message- From: Juergen

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Antonio Fernández Pérez
Thanks for your answer. Regards, Toni. El 1 de marzo de 2012 20:34, Anam Ali Khan anamalik...@yahoo.com escribió: Place SetEnvIfNoCase in a single line. Sorrt, first will deny ALL requests that ending in dll extension and next directives will not logged those requests in Apache logs.