Nginx 웹소킷 설정 스니펫
Server Admin
map $http_upgrade $connection_upgrade {
default "upgrade";
'' $http_connection;
}
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
``
Server Admin
map $http_upgrade $connection_upgrade {
default "upgrade";
'' $http_connection;
}
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
``