我正在尝试在Fargate上推出一个简单的rails应用程序。我一直在关注这个教程:https://scoutapm.com/blog/deploying-to-aws-part-i-running-a-rails-app-on-fargate
我可以在日志中看到puma服务器在localhost:80上监听,但是当我导航到弹性网卡的公网IP时,我无法连接到服务器。
对于这个问题有什么建议吗?我已确保安全组对所有入站和出站流量都开放。
发布于 2019-07-24 05:12:06
绑定'0.0.0.0‘修复了它
rails s -p 80 -b '0.0.0.0'
https://stackoverflow.com/questions/57171936
复制相似问题