discourse/config/redis.yml

22 lines
326 B
YAML
Raw Normal View History

defaults: &defaults
2013-12-20 12:12:23 +08: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 20:51:49 +08:00
<<: *defaults
db: 1
staging:
<<: *defaults
production:
2013-12-20 12:12:23 +08:00
<<: *defaults