解决nginx转发websocket报400错误
2021-01-29 15:13
标签:issue roo 帮助 链接 version 二级域名 通信 ref charset 由于个人服务器上面有多个项目,配置了二级域名,需要对二级域名进行转发,在转发工作这里采用了大名鼎鼎的 这个错误在本地测试环境以及访问非 于是,在 看了下讨论区说的方案,问题出现在 其中最重要的是下面这三行 其中第一行是告诉 第二行和第三行告诉 解决nginx转发websocket报400错误 标签:issue roo 帮助 链接 version 二级域名 通信 ref charset 原文地址:https://www.cnblogs.com/liudaya/p/13202767.html说明
nginx
。在这之前所有的项目运行转发都没问题,然而今天在部署一个具有websocket
通信的项目时,却意外的报错了,错误消息如下:failed: 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
这个位置,配置文件如下所示:server {
listen 80;
server_name school.godotdotdot.com;
charset utf-8;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 60;
proxy_read_timeout 600;
proxy_send_timeout 600;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
nginx
使用HTTP/1.1
通信协议,这是websoket
必须要使用的协议。nginx
,当它想要使用WebSocket时,响应http
升级请求。
上一篇:源码编译 apache2.4
文章标题:解决nginx转发websocket报400错误
文章链接:http://soscw.com/index.php/essay/48729.html