Commit 66f8b33111dff81d16dccaafec21cb19734191e7
Committed by
Matt Gauger
1 parent
fd8afa88
Exists in
master
and in
1 other branch
Always show full error reports in production, since this is an internal applicat…
…ion, and not for public users.
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
config/environments/production.rb
... | ... | @@ -5,8 +5,9 @@ Errbit::Application.configure do |
5 | 5 | # Code is not reloaded between requests |
6 | 6 | config.cache_classes = true |
7 | 7 | |
8 | - # Full error reports are disabled and caching is turned on | |
9 | - config.consider_all_requests_local = false | |
8 | + # Full error reports are enabled, since this is an internal application. | |
9 | + config.consider_all_requests_local = true | |
10 | + # Caching is turned on | |
10 | 11 | config.action_controller.perform_caching = true |
11 | 12 | |
12 | 13 | # Specifies the header that your server uses for sending files | ... | ... |