BigW Consortium Gitlab

resque.yml.example 1.05 KB
Newer Older
1 2 3
# If you change this file in a Merge Request, please also create
# a Merge Request on https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests
#
4 5
development:
  url: redis://localhost:6379
6 7 8 9 10 11 12
  # sentinels:
  #   -
  #     host: localhost
  #     port: 26380 # point to sentinel, not to redis port
  #   -
  #     host: slave2
  #     port: 26381 # point to sentinel, not to redis port
13 14 15 16 17 18 19 20
test:
  url: redis://localhost:6379
production:
  # Redis (single instance)
  url: unix:/var/run/redis/redis.sock
  ##
  # Redis + Sentinel (for HA)
  #
21
  # Please read instructions carefully before using it as you may lose data:
22 23 24
  # http://redis.io/topics/sentinel
  #
  # You must specify a list of a few sentinels that will handle client connection
25
  # please read here for more information: https://docs.gitlab.com/ce/administration/high_availability/redis.html
26
  ##
27 28 29 30 31 32 33 34
  # url: redis://master:6379
  # sentinels:
  #   -
  #     host: slave1
  #     port: 26379 # point to sentinel, not to redis port
  #   -
  #     host: slave2
  #     port: 26379 # point to sentinel, not to redis port