Thanks :)
I thought the more servers I have within my upstream location would mean I
should also increase my keepalive to suit for best performance etc.
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,269997,270001#msg-270001
___
nginx mailin
A backend is a pool (upstream) for which work is distributed to, the pool
size has no bearing to keepalive.
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,269997,27#msg-27
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.o
FastCGI :
upstream fastcgi_backend {
server 127.0.0.1:9000;
keepalive 8;
}
server {
...
location /fastcgi/ {
fastcgi_pass fastcgi_backend;
fastcgi_keep_conn on;
...
}
}
Proxy :
upstream http_backend {
server 127.0.0.1:80;
keepalive 16;
}
se