Fix caching when using remote redis server
This commit is contained in:
parent
b6fdca9c81
commit
2b904cb34f
1 changed files with 8 additions and 1 deletions
|
@ -40,7 +40,14 @@ Gitlab::Application.configure do
|
||||||
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
||||||
|
|
||||||
# Use a different cache store in production
|
# 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
|
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
||||||
# config.action_controller.asset_host = "http://assets.example.com"
|
# config.action_controller.asset_host = "http://assets.example.com"
|
||||||
|
|
Loading…
Reference in a new issue