应该从Nginxconfiguration中删除`keepalive_timeout`吗?
哪一个更好的configuration/优化:明确限制keepalive_timeout或允许Nginx自行终止keepalive连接? 我看到了两个相互矛盾的build议,关于Nginx的keepalive_timeout指令。 他们如下: # How long to allow each connection to stay idle; longer values are better # for each individual client, particularly for SSL, but means that worker # connections are tied up longer. (Default: 65) keepalive_timeout 20; 和 # You should remove keepalive_timeout from your formula. # Nginx closes keepalive connections when the […]