1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/config/settings/cache_store.yml

12 lines
553 B
YAML
Raw Normal View History

2019-09-08 22:31:07 +00:00
default:
host: <%= ENV.fetch('RAILS_CACHE_REDIS_HOST') { 'localhost' } %>
port: <%= ENV.fetch('RAILS_CACHE_REDIS_PORT') { 6379 } %>
db: <%= ENV.fetch('RAILS_CACHE_REDIS_DB') { 1 } %>
password: <%= ENV.fetch('RAILS_CACHE_REDIS_PASSWORD') { 'password' } %>
production:
2019-09-08 22:31:07 +00:00
host: 'db-redis-ams3-76837-do-user-4455684-0.db.ondigitalocean.com'
port: 25061
2019-09-09 19:48:58 +00:00
password: <%= Rails.application.credentials.sidekiq_cache_redis_password %>
db: <%= ENV.fetch('SIDEKIQ_CACHE_REDIS_DB') { 1 } %>