1
0
mirror of https://github.com/whippyshou/mastodon synced 2025-01-20 16:53:43 +09:00
whippy-edition/config/initializers/sidekiq.rb

11 lines
245 B
Ruby
Raw Normal View History

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