ini 具有websocket支持的nodejs最简单的nginx站点配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini 具有websocket支持的nodejs最简单的nginx站点配置相关的知识,希望对你有一定的参考价值。

upstream teamchess3000 {
        server 127.0.0.1:3000;
        # server 127.0.0.1:4000; # Add another node
        ip_hash;
}

server {
        listen 80;

        location / {
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";

                proxy_pass http://teamchess3000;
        }
}

以上是关于ini 具有websocket支持的nodejs最简单的nginx站点配置的主要内容,如果未能解决你的问题,请参考以下文章

使用nodejs创建加入用户验证的websocket服务

用nodejs快速实现websocket服务端(带SSL证书生成)

通过nodejs在共享cpanel主机上实现websocket服务器

HTML5+NodeJs实现WebSocket即时通讯

阿里云全站加速DCDN全面支持WebSocket协议

阿里云全站加速DCDN全面支持WebSocket协议