nginx 开启websocket支持
2018-03-27 本文已影响103人
逆行的小电驴
- 使用一些带有websocket通讯的网站发现普通的nginx配置满足不了
会报错socket错误
- 编辑nginx.conf文件
在http模块增加红框中配置
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
-
修改特定二级域名的server-location配置部分
增加红框中的内容
# websocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
-
reload nginx配置
./nginx -s reload -
重新访问网站错误提示就不在了
错误提示小时,显示websocket连接正常