What alternative is there to Nginx that supports http keep-alive between backends ?
Posted
by
felace
on Server Fault
See other posts from Server Fault
or by felace
Published on 2010-09-14T18:21:18Z
Indexed on
2011/01/09
23:54 UTC
Read the original article
Hit count: 167
Hi.
I recently asked a question about how to keep a backend connection persistent using Nginx, but found out it wasn't possible anyway,
It is an HTTP/1.0 proxy without the ability for keep-alive requests yet. (As a result, backend connections are created and destroyed on every request.)
It works all fine right now (since the connection between client and Nginx is kept alive and the result is simply the same), but I don't want to establish a new connection every single time a new request is received ,even if it's on a unix domain socket.
So, what software (preferably open-source and not too tedious to configure) do you recommend to accomplish that such connections ?
© Server Fault or respective owner