nginx websocket proxy
2021-06-17 08:02
标签:pst proxy listen head upgrade list str location 127.0.0.1 nginx websocket proxy 标签:pst proxy listen head upgrade list str location 127.0.0.1 原文地址:http://www.cnblogs.com/allenhaozi/p/7267488.htmlmap $http_upgrade $connection_upgrade {
default upgrade;
‘‘ close;
}
upstream websocket {
server 127.0.0.1:2346;
}
server {
listen 80 default;
。。。。。
location = /socket.php {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
下一篇:vue.js路由
文章标题:nginx websocket proxy
文章链接:http://soscw.com/index.php/essay/94944.html