From 9122823afca108ffc7019261c7e8f255d640066b Mon Sep 17 00:00:00 2001 From: Jacob Vosmaer Date: Fri, 8 Aug 2014 17:56:01 +0200 Subject: Configure Redis cache for all environments Also add support for connecting to Redis with Unix sockets. --- config/environments/production.rb | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'config/environments') diff --git a/config/environments/production.rb b/config/environments/production.rb index 2450d5719eb..78bf543402b 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -45,16 +45,6 @@ Gitlab::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_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, {namespace: 'cache:gitlab'} - # Enable serving of images, stylesheets, and JavaScripts from an asset server # config.action_controller.asset_host = "http://assets.example.com" -- cgit v1.2.1