##// END OF EJS Templates
replace comment "config/environment.rb" to "config/application.rb" at head of config/environments/*.rb...
Toshi MARUYAMA -
r9475:411f0874ab8f
parent child
Show More
@@ -1,19 +1,19
1 # Settings specified here will take precedence over those in config/environment.rb
1 # Settings specified here will take precedence over those in config/application.rb
2 RedmineApp::Application.configure do
2 RedmineApp::Application.configure do
3 # In the development environment your application's code is reloaded on
3 # In the development environment your application's code is reloaded on
4 # every request. This slows down response time but is perfect for development
4 # every request. This slows down response time but is perfect for development
5 # since you don't have to restart the webserver when you make code changes.
5 # since you don't have to restart the webserver when you make code changes.
6 config.cache_classes = false
6 config.cache_classes = false
7
7
8 # Log error messages when you accidentally call methods on nil.
8 # Log error messages when you accidentally call methods on nil.
9 config.whiny_nils = true
9 config.whiny_nils = true
10
10
11 # Show full error reports and disable caching
11 # Show full error reports and disable caching
12 #config.action_controller.consider_all_requests_local = true
12 #config.action_controller.consider_all_requests_local = true
13 config.action_controller.perform_caching = false
13 config.action_controller.perform_caching = false
14
14
15 # Don't care if the mailer can't send
15 # Don't care if the mailer can't send
16 config.action_mailer.raise_delivery_errors = false
16 config.action_mailer.raise_delivery_errors = false
17
17
18 config.active_support.deprecation = :log
18 config.active_support.deprecation = :log
19 end
19 end
@@ -1,32 +1,32
1 # Settings specified here will take precedence over those in config/environment.rb
1 # Settings specified here will take precedence over those in config/application.rb
2 RedmineApp::Application.configure do
2 RedmineApp::Application.configure do
3 # The production environment is meant for finished, "live" apps.
3 # The production environment is meant for finished, "live" apps.
4 # Code is not reloaded between requests
4 # Code is not reloaded between requests
5 config.cache_classes = true
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 (http://ruby-doc.org/core/classes/Logger.html)
9 #
9 #
10 # Use a different logger for distributed setups
10 # Use a different logger for distributed setups
11 # config.logger = SyslogLogger.new
11 # config.logger = SyslogLogger.new
12 #
12 #
13 # Rotate logs bigger than 1MB, keeps no more than 7 rotated logs around.
13 # Rotate logs bigger than 1MB, keeps no more than 7 rotated logs around.
14 # When setting a new Logger, make sure to set it's log level too.
14 # When setting a new Logger, make sure to set it's log level too.
15 #
15 #
16 # config.logger = Logger.new(config.log_path, 7, 1048576)
16 # config.logger = Logger.new(config.log_path, 7, 1048576)
17 # config.logger.level = Logger::INFO
17 # config.logger.level = Logger::INFO
18
18
19 # Full error reports are disabled and caching is turned on
19 # Full error reports are disabled and caching is turned on
20 config.action_controller.perform_caching = true
20 config.action_controller.perform_caching = true
21
21
22 # Enable serving of images, stylesheets, and javascripts from an asset server
22 # Enable serving of images, stylesheets, and javascripts from an asset server
23 # config.action_controller.asset_host = "http://assets.example.com"
23 # config.action_controller.asset_host = "http://assets.example.com"
24
24
25 # Disable delivery errors if you bad email addresses should just be ignored
25 # Disable delivery errors if you bad email addresses should just be ignored
26 config.action_mailer.raise_delivery_errors = false
26 config.action_mailer.raise_delivery_errors = false
27
27
28 # No email in production log
28 # No email in production log
29 config.action_mailer.logger = nil
29 config.action_mailer.logger = nil
30
30
31 config.active_support.deprecation = :log
31 config.active_support.deprecation = :log
32 end
32 end
@@ -1,25 +1,25
1 # Settings specified here will take precedence over those in config/environment.rb
1 # Settings specified here will take precedence over those in config/application.rb
2 RedmineApp::Application.configure do
2 RedmineApp::Application.configure do
3 # The test environment is used exclusively to run your application's
3 # The test environment is used exclusively to run your application's
4 # test suite. You never need to work with it otherwise. Remember that
4 # test suite. You never need to work with it otherwise. Remember that
5 # your test database is "scratch space" for the test suite and is wiped
5 # your test database is "scratch space" for the test suite and is wiped
6 # and recreated between test runs. Don't rely on the data there!
6 # and recreated between test runs. Don't rely on the data there!
7 config.cache_classes = true
7 config.cache_classes = true
8
8
9 # Log error messages when you accidentally call methods on nil.
9 # Log error messages when you accidentally call methods on nil.
10 config.whiny_nils = true
10 config.whiny_nils = true
11
11
12 # Show full error reports and disable caching
12 # Show full error reports and disable caching
13 #config.action_controller.consider_all_requests_local = true
13 #config.action_controller.consider_all_requests_local = true
14 config.action_controller.perform_caching = false
14 config.action_controller.perform_caching = false
15
15
16 config.action_mailer.perform_deliveries = true
16 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
17 config.action_mailer.delivery_method = :test
18
18
19 # Skip protect_from_forgery in requests http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
19 # Skip protect_from_forgery in requests http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
20 config.action_controller.allow_forgery_protection = false
20 config.action_controller.allow_forgery_protection = false
21
21
22 config.active_support.deprecation = :log
22 config.active_support.deprecation = :log
23
23
24 config.secret_token = 'a secret token for running the tests'
24 config.secret_token = 'a secret token for running the tests'
25 end
25 end
General Comments 0
You need to be logged in to leave comments. Login now