30 lines
844 B
YAML
30 lines
844 B
YAML
|
# redis://[:password@]host[:port][/db-number][?option=value]
|
||
|
# more details: http://www.iana.org/assignments/uri-schemes/prov/redis
|
||
|
development:
|
||
|
url: redis://:mynewpassword@localhost:6379/99
|
||
|
sentinels:
|
||
|
-
|
||
|
host: localhost
|
||
|
port: 26380 # point to sentinel, not to redis port
|
||
|
-
|
||
|
host: slave2
|
||
|
port: 26381 # point to sentinel, not to redis port
|
||
|
test:
|
||
|
url: redis://:mynewpassword@localhost:6379/99
|
||
|
sentinels:
|
||
|
-
|
||
|
host: localhost
|
||
|
port: 26380 # point to sentinel, not to redis port
|
||
|
-
|
||
|
host: slave2
|
||
|
port: 26381 # point to sentinel, not to redis port
|
||
|
production:
|
||
|
url: redis://:mynewpassword@localhost:6379/99
|
||
|
sentinels:
|
||
|
-
|
||
|
host: slave1
|
||
|
port: 26380 # point to sentinel, not to redis port
|
||
|
-
|
||
|
host: slave2
|
||
|
port: 26381 # point to sentinel, not to redis port
|