Re: [EMAIL PROTECTED] Apache server behind squid proxy

2007-12-08 Thread Johan Andersson
Vincent Bray wrote: On 07/12/2007, Johan Andersson [EMAIL PROTECTED] wrote: Sorry, didn't work. Apache won't start. I get this in error_log: [Fri Dec 07 19:42:56 2007] [info] Loading certificate private key of SSL-aware server [Fri Dec 07 19:42:56 2007] [error] Server should be SSL-aware but

Re: [EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-08 Thread Christian Lerrahn
On Fri, 7 Dec 2007 22:38:33 -0500 Joshua Slive [EMAIL PROTECTED] wrote: On Dec 7, 2007 8:18 PM, Christian Lerrahn [EMAIL PROTECTED] wrote: Hi, I have a site that for some reason got indexed by Google with wrong paths which contain too many slashes. E.g. instead of an entry for /foo/bar

Re: [EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-08 Thread Torsten Foertsch
On Sat 08 Dec 2007, Christian Lerrahn wrote: RewriteEngine On RewriteRule (.*)//+(.*) $1$2 [R=permanent,L] Thanks for that. I'm sorry to still bother. I'd like to get rid of paths like //foo/bar, too, which do not match with this rule. To be honest I don't quite understand the rule. That's

[EMAIL PROTECTED] 'Deny from' implications

2007-12-08 Thread Charles Michener
I have a 'not too bright' router that does not allow me to block naughty IP's from my Apache 2.2 server so I am successfully blocking them from Apache using the 'Deny from' directive. What performance load do I get as I add more IP's to my Deny list? Is it better to keep adding separate 'Deny

[EMAIL PROTECTED] Apache module exception handling ...

2007-12-08 Thread Kiffin Gish
Hi there. I'm developing an apache module which handles requests by parsing the url of the request_rec and extracting the key-value pairs. If any of these are invalid, I must immediately send an xml exception error message back to the caller and prevent apache from handling the request further.

[EMAIL PROTECTED] Reverse proxy all but something

2007-12-08 Thread Rocco Scappatura
Hello, I have reverse proxied the url '/' (and so all that starring by '/'). IfModule mod_proxy.c ProxyRequests off ProxyPass / http://10.1.1.1/smthing/ ProxyPassReverse / http://10.1.1.1/smthing/ /IfModule Now I would like to install a log analyzer (awstats) for

Re: [EMAIL PROTECTED] Reverse proxy all but something

2007-12-08 Thread Eric Covener
On Dec 8, 2007 3:22 PM, Rocco Scappatura [EMAIL PROTECTED] wrote: ProxyRequests off The request is proxied to http://10.1.1.1/smthing/awstats/ http://httpd.apache.org/docs/2.0/mod/mod_proxy.html#proxypass The ! directive is useful in situations where you don't want to reverse-proxy a

Re: [EMAIL PROTECTED] Reverse proxy all but something

2007-12-08 Thread Eric Covener
On Dec 8, 2007 5:16 PM, Eric Covener [EMAIL PROTECTED] wrote: On Dec 8, 2007 3:22 PM, Rocco Scappatura [EMAIL PROTECTED] wrote: ProxyRequests off Whoops, snipped the wrong line. -- Eric Covener [EMAIL PROTECTED] -

Re: [EMAIL PROTECTED] Redirecting paths with extra slashes

2007-12-08 Thread Christian Lerrahn
On Sat, 8 Dec 2007 15:40:09 +0100 Torsten Foertsch [EMAIL PROTECTED] wrote: On Sat 08 Dec 2007, Christian Lerrahn wrote: RewriteEngine On RewriteRule (.*)//+(.*) $1$2 [R=permanent,L] Thanks for that. I'm sorry to still bother. I'd like to get rid of paths like //foo/bar, too, which