Cnbaby 发表于 2018-11-10 08:32:26

解决nginx不支持websocket

  ## 解决nginx不支持Websocket的问题:
  ```
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "upgrade";
  ```
  然后在http client加上upgrade to web socket的代码:



页: [1]
查看完整版本: 解决nginx不支持websocket