我在(Ubuntu 14.04 + Passenger + apache2)组合服务器中托管了我的Rails 3.2.13应用程序。
在开发环境中一切都很完美;但在生产环境中。我收到如下错误: -
在浏览器中
We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.
然后,我决定在log/production.log
中进行日志报告并做了一些更改,如下所示。
在/config/environments/production.rb
档案中:
config.consider_all_requests_local = true
config.log_level = :debug
Rails.logger = Logger.new(STDOUT)
Rails.logger = Log4r::Logger.new("Application Log")
即使在/log/production.log
文件
我还需要做其他事吗?请帮助我解决这个问题。
答案 0 :(得分:1)
此处为乘客作者。除了Rails日志文件之外,您还应该查看Web服务器错误日志。在the Passenger documentation's troubleshooting section.
中详细了解相关信息