Hacker News new | ask | show | jobs
by tagx 5052 days ago
We are using nginx. Newer versions support HTTP 1.1 backends (There is also a patch for older versions of nginx)
1 comments

How do you do get nginx to preconnect and maintain an appropriate-sized backend pool?
Most likely using "keepalive": http://nginx.org/r/keepalive
That would do it. Thanks.