我的节点应用程序在端口3000上运行。 然后我使用nginx作为反向代理,使用我的域的SSL来提供应用程序:
server {
listen 443 ssl;
ssl_certificate /etc/nginx/ssl/server.chain.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
server_name example.com;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
我使用以下行在客户端初始化我的套接字:
var socket = io.connect('https://example.com/');
在这一行的服务器端:
var io = socket_io()
app.io = io
但是当我启动我的应用程序时,我遇到了这个错误:
WebSocket connection to 'wss://example.com/socket.io/?EIO=3&transport=websocket&sid=jVNRhDOYJD20l9U-AAAA' failed: Error during WebSocket handshake: Unexpected response code: 502
您知道如何解决此错误吗?
答案 0 :(得分:-2)
本文介绍如何在Kaazing WebSocket服务器前使用nginx作为rev-proxy。
https://kaazing.com/kaazing-and-nginx-the-best-of-both-worlds/
本文中描述的配置可能与使用NodeJS作为服务器非常相似。希望它有所帮助。