AWS elasticbeanstalk socket.io错误400

时间:2017-07-16 08:51:46

标签: amazon-web-services websocket socket.io elastic-beanstalk

我有一个客户端打开与另一台服务器的websocket连接。 当使用socket.io我成功,但在生产中我得到这个错误:

WebSocket握手期间出错:意外的响应代码:400

我读到我需要像这样创建ebextensions配置文件:

location / {
                proxy_pass  http://127.0.0.1:8081;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
                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;
            }

我尝试代理端口8080,也改为' localhost',但我仍然得到错误。 顺便说一下,我在我的域中使用SSL。 我做错了什么?

感谢。

0 个答案:

没有答案