1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 14:37:20 +00:00
mastodon/config/initializers/sidekiq.rb
2016-03-25 16:10:14 +01:00

10 lines
245 B
Ruby

host = ENV['REDIS_HOST'] || 'localhost'
port = ENV['REDIS_PORT'] || 6379
Sidekiq.configure_server do |config|
config.redis = { host: host, port: port }
end
Sidekiq.configure_client do |config|
config.redis = { host: host, port: port }
end