能够直接从生产服务器运行rails服务器,但不能从域名中提取网站

时间:2016-08-03 08:06:23

标签: ruby-on-rails-4 amazon-ec2 dns server

能够直接从生产服务器运行rails服务器,但不能从域名中拉出网站,

我有一个rails应用程序,它部署在带有unicorn+nginx的EC2实例上,两者都在运行。

如果我运行rails s RAILS_ENV=production,它会在ip地址:3000上正常运行,但是当我输入主机名www.example.com时,它会显示error 522 connection timeout

对此有任何帮助,我尝试使用谷歌搜索,但没有任何帮助。

1 个答案:

答案 0 :(得分:0)

这可能有用

rails s -e production -b your_host_ip -p 80

rails s -e production -b 0.0.0.0 -p 80

 rails s -e production -b domain -p 80