##// END OF EJS Templates
Merged r13177 from trunk to 2.5-stable (#5706)...
Toshi MARUYAMA -
r12903:8f84605d8c43
parent child
Show More
@@ -1,32 +1,33
1 1 # Settings specified here will take precedence over those in config/application.rb
2 2 RedmineApp::Application.configure do
3 3 # The production environment is meant for finished, "live" apps.
4 4 # Code is not reloaded between requests
5 5 config.cache_classes = true
6 6
7 7 #####
8 # Customize the default logger (http://ruby-doc.org/core/classes/Logger.html)
8 # Customize the default logger
9 # http://www.ruby-doc.org/stdlib-1.8.7/libdoc/logger/rdoc/Logger.html
9 10 #
10 11 # Use a different logger for distributed setups
11 12 # config.logger = SyslogLogger.new
12 13 #
13 14 # Rotate logs bigger than 1MB, keeps no more than 7 rotated logs around.
14 15 # When setting a new Logger, make sure to set it's log level too.
15 16 #
16 17 # config.logger = Logger.new(config.log_path, 7, 1048576)
17 18 # config.logger.level = Logger::INFO
18 19
19 20 # Full error reports are disabled and caching is turned on
20 21 config.action_controller.perform_caching = true
21 22
22 23 # Enable serving of images, stylesheets, and javascripts from an asset server
23 24 # config.action_controller.asset_host = "http://assets.example.com"
24 25
25 26 # Disable delivery errors if you bad email addresses should just be ignored
26 27 config.action_mailer.raise_delivery_errors = false
27 28
28 29 # No email in production log
29 30 config.action_mailer.logger = nil
30 31
31 32 config.active_support.deprecation = :log
32 33 end
General Comments 0
You need to be logged in to leave comments. Login now