diff options
author | Clworld <clworld@ggtea.org> | 2017-05-22 22:01:02 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-22 15:01:02 +0200 |
commit | df92f010ad5acd72b28e6d49c028f9123e92cf06 (patch) | |
tree | d1ccb9256d2826e126fdf1fe5ca3a3bdcf20658e /config/environments | |
parent | 07af8c05fd65eb705bfbeadf6727cf0f72c79f20 (diff) |
Set config.cache_store in environments file. (#3219)
* Set config.cache_store in application.rb * Set config.cache_store in environments. * fix code format.
Diffstat (limited to 'config/environments')
-rw-r--r-- | config/environments/production.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index fa5f07495..750182402 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -50,6 +50,9 @@ Rails.application.configure do # Use a different logger for distributed setups. # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + # Use a different cache store in production. + config.cache_store = :redis_store, ENV['REDIS_URL'], REDIS_CACHE_PARAMS + # Enable serving of images, stylesheets, and JavaScripts from an asset server. # config.action_controller.asset_host = 'http://assets.example.com' |