Nginx에서 WebSocket 사용하기(Using WebSocket with Nginx)
Nginx에서 WebSocket을 사용하려면 Nginx환경설정(Nginx.conf)에서 아래와 같이 프록시 포워딩을 추가합니다. location /ws { proxy_pass http://아이피:포트; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; } 참고주소 http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_http_version