I run my rails application (Rails 4.2.x) with the passenger module for Apache.
Is there a way to not show error messages:
Thanks.
I run my rails application (Rails 4.2.x) with the passenger module for Apache.
Is there a way to not show error messages:
Thanks.
Make sure the following setting is set to false in your config/environment/production.rb
file:
config.consider_all_requests_local = false
Don't run your production mode like this, you may hack it that it would show errors like that. But you got all your errors in your logs.
check log/production.log for your errors.
Make sure that you have the following setting in your config/environments/production.rb
file:
config.consider_all_requests_local = false