i am using nginx as a reverse proxy server(Let 's call it Server A). server A's upstream server is also a nginx server((Let 's call it Server B) backend with a jetty server((Let 's call it Server C) served at port 8080. we have a lot of Server A and each one of them use the same bunch of server B as upstream, each server B use its local jetty server as its own upstream server. server A and Serverby jonefee - Nginx Mailing List - English
i use nginx as reverse proxy server , and php-fpm as fast cgi upstream. i found some access in nginx access log file doesen't has a "$upstream_response_time" value but a "-" character instead ,,,, and also has "$response_time" value. why ? for example: 71.213.141.240 - 31/Oct/2012:13:09:34 +0800 POST /php/xyz/iface/?key=be7fc0cdf0afbfedff1e09ec6443823a&aby jonefee - Nginx Mailing List - English
my server use nginx+php-fpm ,nginx as reverse proxy server,, but our nginx access log got a lot of 499 response code,,,,the document say that 499 means "client abort the connection ",,,,,i think the the reason cause " client abort connection" comes from two: the first is client is in weak network environment, client request can't be delivered successfully, and client has canby jonefee - Nginx Mailing List - English
here is the config snap: upstream fastcgi { server 127.0.0.1:9000 ; server 10.10.50.175:9000; } with 500 per second requests boosted,,, most of them were processed by the first server, on a few of them were forwarded to the second server,,,,,while ,the first server 's system load balance can reach to 200,, the second was only 20,,,,, what is wrong?by jonefee - How to...