nginx 配置 websocket
Posted virgosnail
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 配置 websocket相关的知识,希望对你有一定的参考价值。
1. 配置代码
server
listen 9900;
server_name 103.108.121.136;
location /ws/
# 必须使用http 1.1
proxy_http_version 1.1;
# 设置请求头为ws请求方式
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://127.0.0.1:9930;
如果文章对您有所帮助,可以点一下推荐
以上是关于nginx 配置 websocket的主要内容,如果未能解决你的问题,请参考以下文章