在企業(yè)網(wǎng)站中,為了避免同一個客戶長時間占用連接,造成資源浪費,可設(shè)置相應(yīng)的連接超時參數(shù),實現(xiàn)控制連接訪問時間。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:空間域名、雅安服務(wù)器托管、營銷軟件、網(wǎng)站建設(shè)、合陽網(wǎng)站維護、網(wǎng)站推廣。
[root@localhost nginx]# curl -I 192.168.52.131
HTTP/1.1 200 OK
Server: nginx/1.1.1
Date: Wed, 13 Nov 2019 11:06:54 GMT
Content-Type: text/html
Content-Length: 637
Last-Modified: Wed, 13 Nov 2019 08:09:06 GMT
Connection: keep-alive //無超時時間
ETag: "5dcbba22-27d"
Accept-Ranges: bytes
[root@localhost nginx]# vim conf/nginx.conf
keepalive_timeout 65 180; //連接保持超時時間,65為服務(wù)端超時時間,180為客戶端超時時間,單位秒
client_header_timeout 80; //等待客戶端發(fā)送請求頭部的超時時間
client_body_timeout 80; //請求體讀超時時間
[root@localhost nginx]# service nginx restart //重啟服務(wù)
[root@localhost nginx]#
[root@localhost nginx]# curl -I 192.168.52.131
HTTP/1.1 200 OK
Server: nginx/1.1.1
Date: Wed, 13 Nov 2019 11:08:28 GMT
Content-Type: text/html
Content-Length: 637
Last-Modified: Wed, 13 Nov 2019 08:09:06 GMT
Connection: keep-alive
Keep-Alive: timeout=180 //超時時間
ETag: "5dcbba22-27d"
Accept-Ranges: bytes
[root@localhost nginx]#