使用 socket.io + nginx 时,出现 400 错误,无法通信

Posted starudream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 socket.io + nginx 时,出现 400 错误,无法通信相关的知识,希望对你有一定的参考价值。

解决方法

将下面的代码配置到 nginx 的配置文件中

location / {
    proxy_pass http://127.0.0.1:8888;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}

以上是关于使用 socket.io + nginx 时,出现 400 错误,无法通信的主要内容,如果未能解决你的问题,请参考以下文章

当远程但不是本地时,Socket.io 退回到 nginx 代理后面的轮询(websocket 给出 400)

Socket.io 不适用于 nginx

Nginx + Node.js + Socket.io + SSL 可能吗?

nginx 和 socket.io 解决方法

带有 nginx 的 Socket.io

使用 Socket.IO 的 NGINX 配置