기본적으로 keep alive가 설정 되어 있지만, reverse proxy일 경우는 keep alive 설정해야함




server { 

    listen       80; 

    server_name  localhost; 

 

    access_log  /var/log/nginx/express-access.log  combined; 

 

    location / { 

        proxy_pass http://127.0.0.1:8000; 

        proxy_http_version 1.1; 

        proxy_set_header Upgrade $http_upgrade; 

        proxy_set_header Connection "upgrade"; 

        keepalive 10; 

    } 

'오픈소스 > nginx' 카테고리의 다른 글

nginx 서버 파라미터 설정  (0) 2018.02.07
nginx worker 설정  (0) 2018.02.07
nginx compression  (0) 2018.02.06
nginx add header  (0) 2018.02.06
nginx bandwidth limit  (0) 2018.02.06

+ Recent posts