Re: [users@httpd] MaxClients exceeded error message

2014-06-27 Thread Pete Houston
On Fri, Jun 27, 2014 at 03:39:42PM +, Rose, John B wrote: > What is the impact of not having a "ListenBacklogs" Directive in your > config? This is covered pretty well in the documentation: http://httpd.apache.org/docs/2.4/mod/mpm_common.html#listenbacklog A cursory read of this tells us that

Re: [users@httpd] MaxClients exceeded error message

2014-06-27 Thread Rose, John B
What is the impact of not having a "ListenBacklogs" Directive in your config? On 6/26/14 8:01 AM, "Robin Becker" wrote: >On 25/06/2014 15:38, Jeff Trawick wrote: >... >>> requests. >>> >>> What are the effects of MaxClient limit being exceeded? >> >> >> delays in processing new connectio

Re: [users@httpd] Windows Apache 2.4.9 restarts itself

2014-06-27 Thread Jeff Trawick
On Thu, Jun 26, 2014 at 4:18 AM, Mar Imp wrote: > Hi, > > Thank you for the response! > > I looked into child.c, and see that the first line in Error log: > (OS 6)The handle is invalid. : AH00356: Child: WAIT_FAILED -- > shutting down server > comes from: > child.c Line 1125+: rv = WaitForMultip

Re: [users@httpd] mod_rewrite RewriteCond

2014-06-27 Thread Pete Houston
You can set up a reverse proxy and include access control like this: LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so ProxyRequests Off ServerName reverse-proxy.example.com allow from 1.2.3.4 2.2.3.4

[users@httpd] R: Re: [users@httpd] mod_rewrite RewriteCond

2014-06-27 Thread Michele De Santis
Thanks Pete, I was using mod_rewrite in block. Apache works like a reverse-proxy. Is there a way to insert more IP? Thanks for your advise. Michael Messaggio originale Da: p...@openstrike.co.uk Data: 27-giu-2014 11.55 A: , "Michele De Santis" Ogg: Re: [users@httpd] mod_rewrite RewriteCo

[users@httpd] Execute a python script with CGI ?

2014-06-27 Thread lcelati
Dear all, 1/ On my windows 8, i installed apache 2.2, python 2.7. I coded a python script. I would like to execute this python script in CGI.I would like enable GET pattern only (no POST pattern). Up to now : *i edited these following lines of my apache httpd.conf: -

Re: [users@httpd] mod_rewrite RewriteCond

2014-06-27 Thread Pete Houston
Hello Michael, The obvious question is why are you using mod_rewrite for access control in the first place? There are other, lighter modules whose purpose actually is access control and which will allow you to use CIDR notation etc. I suggest you take a look at mod_authz_host instead. Pete -- O

[users@httpd] mod_rewrite RewriteCond

2014-06-27 Thread Michele De Santis
Hi to all, I'm working with apache 2.2.3-22 and I want to allow access a certain IP address. These IP are consecutive x.x.x.232 x.x.x.233 in my httpd.conf I'm using RewriteCond %{REMOTE_ADDR} !x\.x\.x\.23[23]$ [NC]RewriteRule \.*$ - [F,NC] or RewriteCond %{REMOTE_ADDR} !x\.x\.x\.23[2-3]$ [NC]R