Websockets on ElasticBeanstalk giving 404



我正在尝试部署一个websocket服务器到Elastic Beanstalk。我有一个Docker容器,包含nginx和一个jar服务器,与nginx只是做转发。nginx.conf是这样的:

listen 80;
location /ws/ {             # <-- this part only works locally
    proxy_pass http://127.0.0.1:8090/;     # jar handles websockets on port 8090
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}
location / {                     # <-- this part works locally and on ElasticBeanstalk
    proxy_pass http://127.0.0.1:8080/;   # jar handles http requests on port 8080
    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-Host $server_name;
}

我可以在本地运行这个docker,一切都工作得很好- http请求被服务,我可以使用ws://localhost:80/ws/连接websockets。然而,当我部署到Elastic Beanstalk时,http请求仍然可以,但试图在ws://myjunk.elasticbeanstalk.com:80/ws/上连接websockets会出现404错误。我是否需要其他东西来允许弹性Beanstalk上的websockets ?

好了,搞定了。我需要ElasticBeanstalk负载均衡器使用TCP而不是HTTP。

要从AWS控制台执行此操作(正如它在2015年5月16日布局的那样),转到您的ElasticBeanstalk环境,选择左侧菜单上的"配置",在"网络层"下有一个"负载平衡"窗格。点击它的齿轮,就可以将负载平衡器协议从http更改为tcp。

相关内容

  • 没有找到相关文章

最新更新