码迷,mamicode.com
首页 > Web开发 > 详细

nginx websocket proxy

时间:2017-08-01 12:37:58      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:pst   proxy   listen   head   upgrade   list   str   location   127.0.0.1   

map $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";
        }

}

  

nginx websocket proxy

标签:pst   proxy   listen   head   upgrade   list   str   location   127.0.0.1   

原文地址:http://www.cnblogs.com/allenhaozi/p/7267488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!