[EMAIL PROTECTED] Changing the localhost port

2007-06-23 Thread Craig Ugoretz
Hello, I am using APACHE as part of the current stable XAMPP distribution (APACHE/MYSQL/PHP). I also want to use a sourceforge.net based program named SAHI to perform web automation tasks (i.e. recording the key presses and clicks within a web page). SAHI says to to set up a windows proxy se

RE: [EMAIL PROTECTED] limiting connections per ip address in apache2 whenunder attack

2007-06-23 Thread Bob
Bob wrote: > > If this is a real attack then you were found by rolling through a whole > block of ip address looking for a open port 80. > Change your apache server to use different port say 7788 instead of port 80 > and then use the free www.zoneedit.com dns service to redirect all FQDN to > your

Re: [EMAIL PROTECTED] Excluding filetypes with

2007-06-23 Thread Vincent Bray
On 23/06/07, Ioannis Cherouvim <[EMAIL PROTECTED]> wrote: JkUriSet worker ajp13:localhost:8009 I tried this, but still, it seems that everything is being served by tomcat. When I hit http://example.com/foo.txt and tomcat is down, I get an error 500 (Internal Server Error). That doesn't s

Re: [EMAIL PROTECTED] Excluding filetypes with

2007-06-23 Thread Ioannis Cherouvim
You seem to have your regex syntax a little muddled. You've got (?! which is fine for negative lookahead, but *. is shell wildcard syntax, not regex. .. perhaps, though I haven't tried it. It's a shame you're not using the more up-to-date mod_proxy_ajp rather than mod_jk as then you'd be abl

Re: [EMAIL PROTECTED] can i set max_clients per virtual host ?

2007-06-23 Thread Vincent Bray
On 21/06/07, Amr Elgbaly <[EMAIL PROTECTED]> wrote: Hello all ! can i limit max_clients per virtual host ? No, not directly. If you think about it, apache has to accept the connection and read it to figure out which vhost is to be used. By that point, you're past the point where MaxClients oper

Re: [EMAIL PROTECTED] Apache 2.2, worker and ServerLimit

2007-06-23 Thread Vincent Bray
On 22/06/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: # apachectl -t Syntax OK # apachectl -k restart Why doesn't it see ServerLimit 160? Please read the docs :-) "For the worker MPM, this directive in combination with ThreadLimit sets the maximum configured value for MaxClients for the l

Re: [EMAIL PROTECTED] Excluding filetypes with

2007-06-23 Thread Vincent Bray
On 23/06/07, Ioannis Cherouvim <[EMAIL PROTECTED]> wrote: Hello Hi, I want to forward all http requests to tomcat, except from static files such as jpg, png etc. JkUriSet worker ajp13:localhost:8009 You seem to have your regex syntax a little muddled. You've got (?! which is fine for n