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

13 lines
407 B
YAML
Raw Normal View History

default: &default
2018-12-09 03:47:11 +00:00
host: <%= ENV.fetch('RAILS_CACHE_REDIS_HOST') { 'localhost' } %>
port: <%= ENV.fetch('RAILS_CACHE_REDIS_PORT') { 6379 } %>
db: <%= ENV.fetch('RAILS_CACHE_REDIS_DB') { 1 } %>
development:
<<: *default
2018-12-09 03:47:11 +00:00
password: <%= ENV.fetch('RAILS_CACHE_REDIS_PASSWORD') { 'password' } %>
production:
<<: *default
2018-12-09 03:47:11 +00:00
password: <%= Rails.application.credentials.rails_cache_redis_password %>