location /ws { proxy_pass http://wss; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; }
map $http_upgrade $connection_upgrade { default upgrade; '' close; } upstream wss { server localhost:5001; }