天天看點

解決nginx轉發websocket報400錯誤

解決nginx轉發websocket報400錯誤

說明

由于個人伺服器上面有多個項目,配置了二級域名,需要對二級域名進行轉發,在轉發工作這快采取了大名鼎鼎的

nginx

。在這之前所有的項目運作轉發都沒問題,然而今天在部署一個具有

websocket

通信的項目時,卻意外的報錯了,錯誤消息如下:

1failed: Error during WebSocket handshake: Unexpected response code: 400           

。這個錯誤在本地測試環境以及通路非

nginx

轉發都沒有問題,由此推斷出問題應該出現在

nginx

轉發這個環節。

于是,在

google

的幫助下,看到了

socket.io

 官方

issues

有關于這個問題的讨論,連結:https://github.com/socketio/socket.io/issues/1942

解決方案

看了下讨論區說的方案,問題出現在

nginx

的配置檔案,需要修改

nginx.conf

檔案。在

linux

終端中敲入

vim /etc/nginx/nginx.conf

,找到

location

這個位置,配置檔案如下所示:

1server {
2        listen       80;
3        server_name  school.godotdotdot.com;
4        charset utf-8;
5
6        location / {
7            proxy_pass http://127.0.0.1:3000;
8            proxy_set_header Host $host;
9            proxy_http_version 1.1; 
10            proxy_set_header Upgrade $http_upgrade;
11            proxy_set_header Connection "upgrade";
12            proxy_set_header X-Real-IP $remote_addr;
13            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
14            proxy_connect_timeout 60;
15            proxy_read_timeout 600;
16            proxy_send_timeout 600;
17        }
18
19        error_page   500 502 503 504  /50x.html;
20        location = /50x.html {
21            root   html;
22        }
23
24    }           

其中最重要的是下面這三行

1proxy_http_version 1.1;
2proxy_set_header Upgrade $http_upgrade;
3proxy_set_header Connection "upgrade";           

其中第一行是告訴

nginx

使用

HTTP/1.1

通信協定,這是

websoket

必須要使用的協定。

第二行和第三行告訴

nginx

,當它想要使用WebSocket時,響應

http

更新請求。

基于MIT開源協定 

本文連結:http://blog.godotdotdot.com/2017/12/04/解決nginx轉發websocket報400錯誤/