summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-14 09:03:54 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-14 09:03:54 -0700
commitbe0c6c27f08694d2a1885507b99f4b54c16f86ea (patch)
treeffb90bec79298cbc945c89dd610f38a24b5d0ae4
parent485e08464720aa2d6bbc645cc9f4458359257002 (diff)
parent2b904cb34fcc9408b49e866976eaa7e82f032184 (diff)
downloadgitlab-ce-be0c6c27f08694d2a1885507b99f4b54c16f86ea.tar.gz
Merge pull request #4775 from globin/remote_cache_redis
Fix caching when using remote redis server
-rw-r--r--config/environments/production.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 2e2d46c4161..e3476be8fba 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -40,7 +40,14 @@ Gitlab::Application.configure do
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
# Use a different cache store in production
- config.cache_store = :redis_store
+ config_file = Rails.root.join('config', 'resque.yml')
+
+ resque_url = if File.exists?(config_file)
+ YAML.load_file(config_file)[Rails.env]
+ else
+ "redis://localhost:6379"
+ end
+ config.cache_store = :redis_store, resque_url
# Enable serving of images, stylesheets, and JavaScripts from an asset server
# config.action_controller.asset_host = "http://assets.example.com"