Nginx 서비스 최적화 (5) 연결 시간 초과 설정

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]#

좋은 웹페이지 즐겨찾기