discourse/config/redis.yml
2014-01-06 12:24:11 +11:00

22 lines
326 B
YAML

defaults: &defaults
host: <%= GlobalSetting.redis_host %>
port: <%= GlobalSetting.redis_port %>
password: <%= GlobalSetting.redis_password %>
db: <%= GlobalSetting.redis_db %>
development:
<<: *defaults
profile:
<<: *defaults
test:
<<: *defaults
db: 1
staging:
<<: *defaults
production:
<<: *defaults