summaryrefslogtreecommitdiff
path: root/spec/fixtures/config/redis_queues_new_format_host.yml
blob: 1535584d77995ff6741e83a7793094be2ea3519f (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:6381/11
  sentinels:
    -
      host: localhost
      port: 26381 # point to sentinel, not to redis port
    -
      host: slave2
      port: 26381 # point to sentinel, not to redis port
test:
  url: redis://:mynewpassword@localhost:6381/11
  sentinels:
    -
      host: localhost
      port: 26381 # point to sentinel, not to redis port
    -
      host: slave2
      port: 26381 # point to sentinel, not to redis port
production:
  url: redis://:mynewpassword@localhost:6381/11
  sentinels:
    -
      host: slave1
      port: 26381 # point to sentinel, not to redis port
    -
      host: slave2
      port: 26381 # point to sentinel, not to redis port