电光石火-穿越时空电光石火-穿越时空


Error during WebSocket handshake: Unexpected response code

需要在配置文件nginx.conf中配置相关信息


nginx文件的location中添加
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
第一行告诉Nginx在与Node后端通信时使用HTTP / 1.1,这是WebSockets所必需的。接下来的两行告诉Nginx响应升级请求,当浏览器想要使用WebSocket时,该请求由HTTP启动。这三行都是必须添加的。

本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => Error during WebSocket handshake: Unexpected response code
本文地址:http://ilkhome.cn/index.php/archives/462/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 Error during WebSocket handshake: Unexpected response code,谢谢。

评论