https://www.cnblogs.com/telwanggs/p/14979183.html
后续发展
在HTTP 1.0中,Keep-Alive默认是关闭的,需要在请求头显式加上Connection: Keep-Alive
,才能启用Keep-Alive。但在HTTP 1.1中,该功能默认是开启的,需要使用Connection: Close
才会禁用Keep-Alive。目前大部分浏览器都是使用HTTP 1.1协议。
location ^~ /xxxxxx/ {
...
proxy_http_version 1.1;
proxy_set_header Connection "";
...
}