Will using Apache's ProxyPass directive on persistent Ajax connections alleviate the connection limit error?

Posted by naurus on Server Fault See other posts from Server Fault or by naurus
Published on 2011-03-15T21:33:15Z Indexed on 2011/03/16 0:12 UTC
Read the original article Hit count: 568

Filed under:
|
|
|
|

I've got some javascript that keeps a persistent Ajax connection open for each client, and I know that this can cause some serious issues for apache, but not for lighttpd. One thing I learned from researching how to get around this was how to use the ProxyPass directive to send all requests for a certain directory to another address:port combination (without letting the user know).

What I want to know is, if I put my PHP in a proxy'd (to lighttpd) directory and call that with javascript, will this still count against my apache connection limit? The reason I wonder is that apache is still serving the content, just not processing it. Seems to me that this would be a connection.

Thanks

© Server Fault or respective owner

Related posts about apache

Related posts about lighttpd