discourse/config/redis.yml

22 lines
326 B
YAML
Raw Normal View History

defaults: &defaults
2013-12-19 23:12:23 -05:00
host: <%= GlobalSetting.redis_host %>
port: <%= GlobalSetting.redis_port %>
password: <%= GlobalSetting.redis_password %>
db: <%= GlobalSetting.redis_db %>
development:
<<: *defaults
profile:
<<: *defaults
test:
2013-03-10 08:51:49 -04:00
<<: *defaults
db: 1
staging:
<<: *defaults
production:
2013-12-19 23:12:23 -05:00
<<: *defaults