summaryrefslogtreecommitdiff
path: root/spec/fixtures/config/redis_new_format_host.yml
blob: 13772677a45c2e837656e065ca272baed8858aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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