Ngxin下配置websocket

那么ngxin是支持http和websocket公用443端口的,比如你有一个网站https://jiangruyi.com,同时你需要配置一个wss://jiangruyi.com的websocket接口,可以参考一下配置:

代码语言:javascript
复制
    # 代理socket
    location /wss {
        proxy_pass http://127.0.0.1:9508;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
        proxy_set_header X-Real-IP $remote_addr;
    }