我正在嘗試創建一個安全的 node.js 伺服器,而同一連接埠上沒有 websocket 伺服器。端口是8080。
我可以在瀏覽器中存取該 url,並且當我指定連接埠時可以連接到 websockets。
https://ws.site.com// 有效
wss://ws.site.com // 無效
wss://ws.site.com:8080 // 有效
為什麼是這樣?我究竟做錯了什麼?這是 nginx 配置
upstream ws.site.com {
server 127.0.0.1:8080;
}
server {
listen 443;
server_name ws.site.com;
ssl on;
ssl_certificate /path/ssl-bundle.crt;
ssl_certificate_key /path/myserver.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
location / {
access_log off;
proxy_pass https://ws.site.com;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 86400;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
答案1
URLwss://
處理程序使用WebSockets 的預設端口,如果您不自行添加連接埠後綴,則為 443。如果您在非預設連接埠 (8080) 上執行它,則需要連接埠後綴。
答案2
問題出在你的設定。
您的上游正在連接埠 8080 上運作:
upstream ws.site.com {
server 127.0.0.1:8080;
}
並且您告訴我們查看 https (443) 連接埠:
proxy_pass https://ws.site.com;
proxy_redirect off;
修復它http://ws.site.com
簡單連接埠表:
- 埠 80:http、ws
- 連接埠 443:https、wss