我有一个龙卷风websocket服务器,可以在我的本地机器上正常工作。但是当我将它部署到Web服务器并使用supervisord运行时,我无法连接到javascript websockets。 我试图在防火墙中打开端口,但不起作用。 我还尝试使用nginx代理(和tcp模块)
tcp {
upstream websockets {
server abc.de.efg.hij:23581;
check interval=3000 rise=2 fall=5 timeout=1000;
}
server {
listen abc.de.efg.hij:45645;
server_name _;
tcp_nodelay on;
proxy_pass websockets;
}
}
但也不起作用。 什么错了?
答案 0 :(得分:0)
您需要为websocket添加额外的“位置”部分,以确保正确传递升级标头:
location /YOUR_SOCKET_ENDPOINT/ {
proxy_pass http://backend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}