甘于平凡,做一个甘于平凡的人,菜米油盐,|

Rolay

园龄:6年粉丝:11关注:3

nginx websocket代理配置

复制代码
map $http_upgrade $connection_upgrade {
        default upgrade;
        '' close;
    }

   upstream linecloudwebsocket {
        server 127.0.0.1:9002;
    }
server{
   listen       80;
   server_name  localhost;    
    location /linecloud/socket {
             rewrite ^/linecloud/socket(.*)$ /$1 break;
            proxy_pass http://linecloudwebsocket;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection $connection_upgrade;
        }
}
复制代码

 

posted @   Rolay  阅读(2186)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起