summaryrefslogtreecommitdiff
path: root/spec/fixtures/config/redis_new_format_host.yml
blob: 3bd91bcee6ba79984385f9dae9b867640b1300cd (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@development-host:6379/99
  sentinels:
    -
      host: development-replica1
      port: 26379 # point to sentinel, not to redis port
    -
      host: development-replica2
      port: 26379 # point to sentinel, not to redis port
test:
  url: redis://:mynewpassword@test-host:6379/99
  sentinels:
    -
      host: test-replica1
      port: 26379 # point to sentinel, not to redis port
    -
      host: test-replica2
      port: 26379 # point to sentinel, not to redis port
production:
  url: redis://:mynewpassword@production-host:6379/99
  sentinels:
    -
      host: production-replica1
      port: 26379 # point to sentinel, not to redis port
    -
      host: production-replica2
      port: 26379 # point to sentinel, not to redis port