0
点赞
收藏
分享

微信扫一扫

websocket连接不上服务器问题 亲测有效

巧乐兹_d41f 2022-01-11 阅读 61

域名有证书即https

Nginx 服务器加

location /wss
    {
      proxy_pass http://127.0.0.1:7272;
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "Upgrade";
      proxy_set_header X-Real-IP $remote_addr;
    }

前端使用

wss://域名/wss

举报

相关推荐

0 条评论