用户友好的错误页面在生产环境中不显示
最近,我的生产环境中停止显示用户友好的错误页面。我正在使用 Rails 3.0.3。
我的 config/environments/development.rb
中有以下内容:
config.action_controller.consider_all_requests_local = false
当我使用生产环境在本地启动 Web 服务器时,用户友好的错误页面会正确显示。
还有其他人经历过吗?
Recently my user friendly error pages stopped displaying for my production environment. I am using rails 3.0.3.
I have the following in my config/environments/production.rb
:
config.action_controller.consider_all_requests_local = false
When I start my web server locally using the production environment, the user-friendly error pages display properly.
Has anyone else experienced this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢 EngineYard 的 Scott,我找到了解决此问题的方法,
我将其放在 config/environments/production.rb 的开头
I found a fix for this thanks to Scott at EngineYard
I put this at the beginning of my config/environments/production.rb