在经典负载均衡器(Elastic Beanstalk)后面的 AWS 上托管了一个 Laravel/Vue.JS 应用程序,并通过 Nginx 在内部代理到 socket.io 服务器。SSL 在 Nginx 上终止。
这是 nginx 配置:
location /socket.io {
proxy_pass http://127.0.0.1:6001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
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;
proxy_set_header X-Forwarded-Proto $scheme;
}
现在长轮询模式工作正常,但无法启动升级:
WebSocket 连接到“wss://example.com/socket.io/?EIO=3&transport=websocket&sid=HmDFtq-aj1WgfGUyAAAJ”失败:WebSocket 握手期间出错:意外响应代码:400
PS Chrome 的Frames
标签我只能看到这条奇怪的消息:(Opcode -1)
有没有人成功让 socket.io 在 AWS Elastic Beanstalk 环境中工作?我只是浪费了两个星期来处理这个问题,非常感谢任何建议或想法。谢谢!
更新。我打开了详细的日志记录,这里是 Nginx 中的变量:
$host example.com
$proxy_add_x_forwarded_for 134.xxx.xxx.xxx
$http_upgrade -
$remote_addr 172.31.10.208
$remote_user -
$server_name _
$upstream_addr 127.0.0.1:6001
$request GET /socket.io/?EIO=3&transport=polling&t=Lw26sYn&sid=6L5iHma-GJOeE3JQAAAX HTTP/1.1
$upstream_response_time 24.658 msec
$request_time 24.658
也许有人会发现其中一些值不正确,因此我将不胜感激。