配置Nginx实现连接超时
在企业网站中,为了避免同一个客户长时间占用连接,造成资源浪费,可设置相应的连接超时参数,实现控制连接访问时间。
1.用“curl -I”命令查看connection参数
[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
2.修改Nginx配置文件
[root@localhost Nginx]# vim conf/Nginx.conf
keepalive_timeout 65 180; //连接保持超时时间,65为服务端超时时间,180为客户端超时时间,单位秒
client_header_timeout 80; //等待客户端发送请求头部的超时时间
client_body_timeout 80; //请求体读超时时间
[root@localhost Nginx]# service Nginx restart //重启服务
[root@localhost Nginx]#
3.再次用“curl -I”命令查看connection参数
[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]#
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。