4

こんにちは、nginx を websocket のリバース プロキシとして設定しようとしています。サーバーを次のように構成します。

server {
    listen       80;
    server_name  www.mydomain.com;

    access_log  off;
    #error_log off;

    location / {
        proxy_pass         http://127.0.0.1:8765;
        proxy_redirect     off;

        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
        proxy_set_header Host $http_host;

        proxy_buffering off;
    }

}

しかし、次のようなクライアントからエラーが発生します

'ws://www.application.com/ws' への WebSocket 接続に失敗しました: WebSocket ハンドシェイク中のエラー: 'Connection' ヘッダー値が 'Upgrade' ではありません

おそらく設定が間違っているのでしょうが、それを見ることができませんでした。

クライアントのリクエストヘッダーは次のとおりです

GET ws://www.talkybee.com/ws HTTP/1.1
Pragma: no-cache
Origin: http://www.talkybee.com
Host: www.talkybee.com
Sec-WebSocket-Key: Ol+O1IdaLEsHxxWRBt2oqg==
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
Upgrade: websocket
Sec-WebSocket-Extensions: x-webkit-deflate-frame
Cache-Control: no-cache
Connection: Upgrade
Sec-WebSocket-Version: 13

通常の直接接続を行うと、私の接続は機能します。これが作業リクエストヘッダーです。

Cache-Control:no-cache
Connection:Upgrade
Host:www.talkybee.com:8765
Origin:http://www.talkybee.com:8765
Pragma:no-cache
Sec-WebSocket-Extensions:x-webkit-deflate-frame
Sec-WebSocket-Key:Y026b/84aUkMxVb0MaKE2A==
Sec-WebSocket-Version:13
Upgrade:websocket
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36
4

1 に答える 1

21

この問題は、nginx のバージョンに関連しています。バージョンを確認するには、nginx -v を確認してください。バージョン1.4以降では、次のパラメータがサポートされています。

 # WebSocket support (nginx 1.4)
 proxy_http_version 1.1;
 proxy_set_header Upgrade $http_upgrade;
 proxy_set_header Connection "upgrade";

ubuntu を使用している場合は、次の手順で新しいバージョンをインストールできます。

最初に古いバージョンを削除します ( https://askubuntu.com/questions/235347/what-is-the-best-way-to-uninstall-nginx ):

sudo apt-get remove nginx
sudo apt-get purge nginx
sudo apt-get autoremove 

次に、新しいバージョンをインストールします ( https://launchpad.net/~nginx/+archive/development ):

sudo add-apt-repository ppa:nginx/development
sudo apt-get update
sudo apt-get install nginx
于 2013-09-06T13:24:57.383 に答える