我有一个龙卷风websocket服务器,在我的本地机器上运行良好。但是当我将它部署到web服务器并使用supervisor运行它时,我无法与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;
}
}
但也不起作用。怎么了?
您需要为websocket添加额外的'location'部分,以确保正确传递升级头:
location /YOUR_SOCKET_ENDPOINT/ {
proxy_pass http://backend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
文档在这里:http://nginx.org/en/docs/http/websocket.html