nginx upstream開啟keepalive
upstream tomcat { server ops-coffee.cn:8080; keepalive 1024; } server { location / { proxy_http_version 1.1; proxy_set_header Connection ""; proxy_pass http://tomcat; } }
nginx在專案中大多數情況下會作為反向代理使用,例如nginx後接tomcat,nginx後接php等,這時我們開啟nginx與後端服務之間的keepalive能夠減少頻繁創建TCP連線造成的資源消耗,配置如上
keepalive: 指定每個nginxworker可以保持的最大連線數量為1024,預設不設定,即nginx作為client時keepalive未生效
proxy_http_version 1.1: 開啟keepalive要求HTTP協定版本為HTTP 1.1
Connection#proxy_set_header Connection "": 為了相容老的協定以及防止http頭中有有close導致的keepalive失效,這裡需要及時清除HTTP頭的Connection
#########以上是nginx upstream如何開啟keepalive的詳細內容。更多資訊請關注PHP中文網其他相關文章!