nginx 配置 websocket

Posted virgosnail

tags:

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

1. 配置代码

    server 
        listen       9900;
        server_name  103.108.121.136;

        location /ws/ 
            # 必须使用http 1.1
            proxy_http_version 1.1;
            # 设置请求头为ws请求方式
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
            proxy_pass http://127.0.0.1:9930;
        
    

以上是关于nginx 配置 websocket的主要内容,如果未能解决你的问题,请参考以下文章

如何配置 uwsgi + nginx + Django + websocket?

nginx websocket配置

Nginx实战之反向代理WebSocket的配置实例

将 nginx 配置为 websocket 的代理

nginx 配置websocket 400 问题

Nginx配置websocket的反向代理