美文网首页
nginx 设置 wss 反向代理

nginx 设置 wss 反向代理

作者: Spooking | 来源:发表于2021-03-04 10:16 被阅读0次

    location /wss {
    proxy_pass http://127.0.0.1:10086;
    proxy_http_version 1.1;
    proxy_set_header Upgrade http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header X-real-ipremote_addr;
    proxy_set_header X-Forwarded-For $remote_addr;
    }

    相关文章

      网友评论

          本文标题:nginx 设置 wss 反向代理

          本文链接:https://www.haomeiwen.com/subject/riwhqltx.html