On Mon, 2006-08-14 at 14:30 -0400, Jonathan Vanasco wrote: > under my naive understanding, KeepAlive should be off in a multi- > server setup, as the only item in the connection request should be > the single dynamic content page (as the images and css/js files are > handled by the proxy). > > or , am i way off, and the connection is good for multiple requests , > and keepalive on would be a bonus?
That is totally dependent on what you use for a proxy server. If it shares the open connections between processes, then it might be ok. If it doesn't, you have to turn it off or you'll go over MaxClients, since your proxy would normally be configured to handle at least 10 times as many connections as your application server. - Perrin