当前位置:首页 » 《休闲阅读》 » 正文

前端 webSocket配置代理

1 人参与  2024年11月18日 14:01  分类 : 《休闲阅读》  评论

点击全文阅读


vue, react. nginx 配置反向代理,解决跨域问题

前端请求

如果配置了 wss 协议, 可以将ws 替换为 wss

这里和我们通常使用的方式不同websocket 需要传入完整的地址,然后才能去做代理

  let url = `${location.protocol === 'https' ? 'wss' : 'ws'}://${location.host}/ws/socket/io`;  const socket = new WebSocket(url);

 vite.config.ts给 将 proxy

如果配置了 wss 协议, 可以将ws 替换为 wss

   "/ws": {        target: "ws://localhost:8888", // 后端地址        changeOrigin: true, //支持跨域        ws: true, // 是否启用WebSocket代理        rewrite: (path) => path.replace(/^\/ws/, ""), // 重写      },

服务器 nginx 代理配置 ,配置后刷新就好了

        # nginx配置websocket    location /ws/ {        rewrite /ws/(.*) /$1 break;        proxy_pass http://127.0.0.1:7000/;   #websocket地址        proxy_http_version 1.1;        proxy_set_header Host $host;        proxy_set_header X-Real-IP $remote_addr;        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;        proxy_read_timeout 120s;        proxy_set_header Upgrade websocket;        proxy_set_header Connection Upgrade;}

大概就这样,如果有问题后面胡补充@


点击全文阅读


本文链接:http://zhangshiyu.com/post/188187.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1