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

26 lines
1017 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' } %>
2019-10-15 03:27:32 +00:00
staging:
host: 'private-db-redis-ams3-76837-do-user-4455684-0.db.ondigitalocean.com'
port: 25061
password: <%= Rails.application.credentials.rails_cache_redis_password %>
db: 11
ssl: true
ssl_params:
verify_mode: <%= OpenSSL::SSL::VERIFY_NONE %>
ca_file: <%= Rails.root.join 'config', 'certs', 'redis.crt' %>
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 23:56:27 +00:00
password: <%= Rails.application.credentials.rails_cache_redis_password %>
2019-09-09 19:50:03 +00:00
db: 1
2019-09-09 23:20:50 +00:00
ssl: true
ssl_params:
2019-09-09 23:47:47 +00:00
verify_mode: <%= OpenSSL::SSL::VERIFY_NONE %>
2019-09-13 18:43:42 +00:00
ca_file: <%= Rails.root.join 'config', 'certs', 'redis.crt' %>