mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:51:04 +08:00
31 lines
484 B
Plaintext
31 lines
484 B
Plaintext
defaults: &defaults
|
|
host: localhost
|
|
port: 6379
|
|
db: 0
|
|
cache_db: 2
|
|
|
|
development:
|
|
<<: *defaults
|
|
|
|
profile:
|
|
<<: *defaults
|
|
|
|
test:
|
|
<<: *defaults
|
|
db: 1
|
|
|
|
staging:
|
|
<<: *defaults
|
|
|
|
production:
|
|
<<: *defaults
|
|
|
|
# Example for using environment variables
|
|
#
|
|
# production:
|
|
# uri: <%= uri = URI.parse(ENV['OPENREDIS_URL']) if ENV['OPENREDIS_URL'] %>
|
|
# host: <%= uri.host if uri %>
|
|
# port: <%= uri.port if uri %>
|
|
# password: <%= uri.password if uri %>
|
|
# db: 0
|
|
# cache_db: 2 |