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

14 lines
579 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:
host: 'private-db-redis-ams3-76837-do-user-4455684-0.db.ondigitalocean.com'
2019-09-08 22:31:07 +00:00
port: 25061
2019-09-09 19:48:58 +00:00
password: <%= Rails.application.credentials.sidekiq_cache_redis_password %>
2019-09-09 19:50:03 +00:00
db: 1
2019-09-09 22:54:27 +00:00
ssl:
2019-09-09 23:05:28 +00:00
ca_file: <%= Rails.root.join 'config', 'redis.crt' %>