我有一个Rails 3应用程序使用Nginx / Phusion Passenger部署到带有capistrano的EC2。当我运行部署脚本时,我注意到production.log被写入:
...
Compiled blueprint/screen.css (0ms) (pid 723)
Compiled active_admin/print.css (103ms) (pid 723)
Connecting to database specified by database.yml
Creating scope :all. Overwriting existing method Account.all.
AccountType Load (1.4ms) SELECT "account_types".* FROM "account_types"
...
在我的environment / production.log文件中,我将log_level设置为debug,尝试对正在进行的操作进行故障排除:
config.log_level :debug
我甚至将production.log权限更改为777。
但是当我打开谷歌浏览器并转到我的EC2实例的IP地址时,我得到:
We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.
然而我的produ.log什么也没有显示。
我可以采取哪些其他措施来解决此问题?另请注意,它甚至不指向用户/登录(由于它正在使用设计,它应该这样做)。