美文网首页
[Nginx] 反向代理 WebSocket

[Nginx] 反向代理 WebSocket

作者: 卓灬不凡 | 来源:发表于2020-03-31 10:05 被阅读0次

    nginx.conf 配置如下:ws 换成自己的后缀

    location /ws {
          proxy_pass  http://localhost:9911/ws;
          proxy_http_version 1.1;
          proxy_set_header X-Real-IP $remote_addr;
          add_header Access-Control-Allow-Origin *;
          proxy_set_header Upgrade websocket;
          proxy_set_header Connection Upgrade;
          proxy_set_header Host $host;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          rewrite /ws/(.*) /$1 break;
    }
    

    相关文章

      网友评论

          本文标题:[Nginx] 反向代理 WebSocket

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