nginx 프 록 시 웹 소켓 과 이벤트 소스 요청 시간 초과 연결 이 되 지 않 지만 로 컬 에서 문제 가 발생 할 수 있 습 니 다.

nginx  webSocket  eventSource                 
nginx               
                       
#    
location /api/ {
   proxy_pass  http://    /;
}
#eventSource
location /es/ {
    proxy_pass  http://    /;
    proxy_set_header Connection '';
    proxy_http_version 1.1;
    chunked_transfer_encoding off;
    proxy_buffering off;
    proxy_cache off;
}

 
 
#webSocket 
location /api/ws/ {
    proxy_pass  http://    /;
    proxy_redirect off;
    proxy_http_version 1.1;
     proxy_set_header Upgrade $http_upgrade;
     proxy_set_header Connection "upgrade";
 }

좋은 웹페이지 즐겨찾기