mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-23 00:47:51 +00:00
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
# 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
|
|
#
|
|
development:
|
|
url: redis://localhost:6379
|
|
# ssl_params:
|
|
# ca_path: "/path/to/dir/with/certs"
|
|
# ca_file: "/path/to/ca.crt"
|
|
# cert_file: "/path/to/client.crt"
|
|
# key_file: "/path/to/client.key"
|
|
# sentinels:
|
|
# -
|
|
# host: localhost
|
|
# port: 26380 # point to sentinel, not to redis port
|
|
# -
|
|
# host: replica2
|
|
# port: 26381 # point to sentinel, not to redis port
|
|
test:
|
|
url: redis://localhost:6379
|
|
production:
|
|
# Redis (single instance)
|
|
url: unix:/var/run/redis/redis.sock
|
|
##
|
|
# Redis + Sentinel (for HA)
|
|
#
|
|
# Please read instructions carefully before using it as you may lose data:
|
|
# http://redis.io/topics/sentinel
|
|
#
|
|
# You must specify a list of a few sentinels that will handle client connection
|
|
# please read here for more information: https://docs.gitlab.com/ee/administration/redis/
|
|
##
|
|
# url: redis://master:6379
|
|
# sentinels:
|
|
# -
|
|
# host: replica1
|
|
# port: 26379 # point to sentinel, not to redis port
|
|
# -
|
|
# host: replica2
|
|
# port: 26379 # point to sentinel, not to redis port
|