0

在我的虚拟机 ubuntu32 中,我安装了 nginx。

http://192.168.11.8/ 

显示欢迎 nginx!页。

我在 vagrant 目录中添加了 rails 应用程序。我在 railapp/config/unicorn.rb 安装了独角兽 gem

working_directory File.expand_path("../..", __FILE__)

现在当我跑

vagrant@precise32:/vagrant$ bundle exec unicorn -c config/unicorn.rb

,它在我的终端中显示以下内容。

vagrant@precise32:/vagrant$ bundle exec unicorn -c config/unicorn.rb
I, [2013-11-02T03:53:34.983828 #19364]  INFO -- : listening on addr=0.0.0.0:8080 fd=9
I, [2013-11-02T03:53:34.984324 #19364]  INFO -- : worker=0 spawning...
I, [2013-11-02T03:53:34.985178 #19364]  INFO -- : master process ready
I, [2013-11-02T03:53:34.986044 #19479]  INFO -- : worker=0 spawned pid=19479
I, [2013-11-02T03:53:34.986595 #19479]  INFO -- : Refreshing Gem list
I, [2013-11-02T03:53:37.303696 #19479]  INFO -- : worker=0 ready

但是,当我访问 localhost:8080 时,它显示“糟糕!Google Chrome 无法连接到 localhost:8080”。

当我运行bundle exec rails s时,railsapp 在

http://192.168.11.8:3000/

我究竟做错了什么?

4

1 回答 1

0

您需要设置 nginx 以侦听端口 8080 并将该端口上的请求转发到您的应用程序。查看独角兽的示例 nginx 配置,了解如何设置。

希望这可以帮助!

于 2013-11-03T03:43:15.013 回答