nginx websocket proxy

Posted hao.ma

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx websocket proxy相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

Nginx websocket proxy断连问题

使用nginx作为websocket的proxy server

配置 Nginx 反向代理 WebSocket

015_NGINX作为WebSocket Proxy的设置

报错nginx failed error: during websocket handshake

Nginx支持WebSocket服务