web-dev-qa-db-ja.com

ポートを指定せずにWebSocketサーバーに接続する

同じポートにwebsocketサーバーなしで安全なnode.jsサーバーを作成しようとしています。ポートは8080です。

ブラウザでURLにアクセスでき、ポートを指定するとWebSocketに接続できます。

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";
    }
}
3
tbleckert

wss:// URLハンドラーは WebSocketのデフォルトポート を使用します。これは、独自のポートサフィックスを追加しない場合は443です。デフォルト以外のポート(8080)で実行する場合は、ポートサフィックスが必要です。

8
frdmn

問題は設定にあります。

アップストリームはポート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
0
Luiz Vaz