[users@httpd] Re: Why is static page response time going up with increased concurrent requests

2011-12-29 Thread Daniel Benamy
Thanks for the responses! I replied to a few points at http://serverfault.com/q/344788/55762. Sorry if this doesn't thread right; I'm subscribed to the digest and I'm not sure how to reply to a particular message. Dan - The offi

[users@httpd] Apache2 + Mysql ab bencharmk 4 requests per second

2011-12-29 Thread Zap Yahoo Spam
Hi, It's official. I have the worse apache2 + php + mysql ever running on Ubuntu server 10.04LTS 64x. Dual CPU Xeon 3,2 dual core = 8 cores 3GB RAM 800GB SAS My best benchmar using apachebench is: ab -n 500 -c 20 http://www.exampl

[users@httpd] selectively disclaim on SSL client-auth for some directories

2011-12-29 Thread Christoph Anton Mitterer
Hi. I wondered whether the following is somehow possible (I guess it's not). I have a SSL vhost,... and I'd like to require SSL client cert authentication _per default_ ... but selectively being able to not demand it for some directories/files/locations. Having something like: SSLVerifyClient

Re: [users@httpd] setting options for a single file

2011-12-29 Thread Christoph Anton Mitterer
On Tue, 2011-12-27 at 10:28 -0500, Eric Covener wrote: > > Is there a different whether I match > > "^/path/tovHost$" > > or > > "^/path/tovHost/$" > > yes, the note unique to 2.3 is about that. I don't remember where it > mattered. Yeah,.. I've read the note in trunk-doc,... but it is unclear

Re: [users@httpd] Why is static page response time going up with increased concurrent requests

2011-12-29 Thread Igor Galić
- Original Message - > On 28/12/2011 22:04, Daniel Benamy wrote: > > I've documented some unexpected performance behavior I'm seeing at > > http://serverfault.com/q/344788/55762. Does anyone have any > > thoughts > > on this? > > > > Maybe your benchmark's concurrent requests exceed the n

Re: [users@httpd] Why is static page response time going up with increased concurrent requests

2011-12-29 Thread Simone Caruso
On 28/12/2011 22:04, Daniel Benamy wrote: > I've documented some unexpected performance behavior I'm seeing at > http://serverfault.com/q/344788/55762. Does anyone have any thoughts > on this? > Maybe your benchmark's concurrent requests exceed the number of apache's MaxClients or your minSpareSe

RE: [users@httpd] Apache 2 Reverse Proxy

2011-12-29 Thread Øyvind Lode
Hi: You're missing ... and ... to allow access to the proxied host. Try something like this: ProxyRequests off Order deny,allow Allow from all ProxyPass / http://domain:8080/ ProxyPassReverse / http://domain:8080/ Order allow,deny Allow from all -Original Message- From: Damien Hu