debian-mirror-gitlab/config
2019-12-04 20:38:33 +05:30
..
environments New upstream version 12.1.11 2019-09-30 21:07:59 +05:30
helpers New upstream version 11.10.8+dfsg 2019-07-07 11:18:12 +05:30
initializers New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
knative New upstream version 12.2.8 2019-10-12 21:52:04 +05:30
locales New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
prometheus New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
routes New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
application.rb New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
boot.rb New upstream version 12.2.8 2019-10-12 21:52:04 +05:30
brakeman.ignore New upstream version 12.1.11 2019-09-30 21:07:59 +05:30
database.yml.env Imported Upstream version 8.5.8+dfsg 2016-04-02 18:10:28 +05:30
database.yml.postgresql New upstream version 12.1.11 2019-09-30 21:07:59 +05:30
database_geo.yml.postgresql New upstream version 12.1.11 2019-09-30 21:07:59 +05:30
dependency_decisions.yml New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
environment.rb New upstream version 11.7.5 2019-02-15 15:39:39 +05:30
gitlab.yml.example New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
jsdocs.config.js New upstream version 11.8.0 2019-03-02 22:35:43 +05:30
karma.config.js New upstream version 12.2.8 2019-10-12 21:52:04 +05:30
license_finder.yml Imported Upstream version 8.9.0+debian~rc4 2016-06-16 23:09:34 +05:30
mail_room.yml New upstream version 9.5.4+dfsg 2017-09-10 17:25:29 +05:30
no_todos_messages.yml New upstream version 12.1.11 2019-09-30 21:07:59 +05:30
object_store_settings.rb New upstream version 11.2.8+dfsg 2018-11-18 11:00:15 +05:30
pseudonymizer.yml New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
puma.example.development.rb New upstream version 12.0.8 2019-09-04 21:01:54 +05:30
puma.rb.example New upstream version 11.11.7+dfsg 2019-07-31 17:26:46 +00:00
README.md New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
redis.cache.yml.example New upstream version 9.5.4+dfsg 2017-09-10 17:25:29 +05:30
redis.queues.yml.example New upstream version 9.5.4+dfsg 2017-09-10 17:25:29 +05:30
redis.shared_state.yml.example New upstream version 9.5.4+dfsg 2017-09-10 17:25:29 +05:30
resque.yml.example New upstream version 8.11.3+dfsg 2016-09-13 17:45:13 +05:30
routes.rb New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
secrets.yml.example Imported Upstream version 8.0.2 2015-09-25 12:07:36 +05:30
settings.rb New upstream version 12.2.8 2019-10-12 21:52:04 +05:30
sidekiq.yml.example Imported Upstream version 8.8.2+dfsg 2016-06-02 11:05:42 +05:30
sidekiq_queues.yml New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
smime_signature_settings.rb New upstream version 12.3.8 2019-12-04 20:38:33 +05:30
spring.rb New upstream version 10.7.3+dfsg 2018-05-09 12:01:36 +05:30
unicorn.rb.example New upstream version 12.1.11 2019-09-30 21:07:59 +05:30
unicorn.rb.example.development New upstream version 12.1.11 2019-09-30 21:07:59 +05:30
webpack.config.js New upstream version 12.3.8 2019-12-04 20:38:33 +05:30

Configuration files Documentation

Note that most configuration files (config/*.*) committed into gitlab-ce will not be used for omnibus-gitlab. Configuration files committed into gitlab-ce are only used for development.

gitlab.yml

You can find most of GitLab configuration settings here.

mail_room.yml

This file is actually an YML wrapped inside an ERB file to enable templated values to be specified from gitlab.yml. mail_room loads this file first as an ERB file and then loads the resulting YML as its configuration.

resque.yml

This file is called resque.yml for historical reasons. We are NOT using Resque at the moment. It is used to specify Redis configuration values when a single database instance of Redis is desired.

Advanced Redis configuration files

In more advanced configurations of Redis key-value storage, it is desirable to separate the keys by lifecycle and intended use to ease provisioning and management of scalable Redis clusters.

These settings provide routing and other configuration data (such as sentinel, persistence policies, and other Redis customization) for connections to Redis single instances, Redis sentinel, and Redis clusters.

If desired, the routing URL provided by these settings can be used with:

  1. Unix Socket
    1. named socket for each Redis instance desired.
    2. database number for each Redis instance desired.
  2. TCP Socket
    1. host name or IP for each Redis instance desired
    2. TCP port number for each Redis instance desired
    3. database number for each Redis instance desired

Example URL attribute formats for GitLab Redis .yml configuration files

  • Unix Socket, default Redis database (0)
    • url: unix:/path/to/redis.sock
    • url: unix:/path/to/redis.sock?db=
  • Unix Socket, Redis database 44
    • url: unix:/path/to/redis.sock?db=44
    • url: unix:/path/to/redis.sock?extra=foo&db=44
  • TCP Socket for Redis on localhost, port 6379, database 33
    • url: redis://:mynewpassword@localhost:6379/33
  • TCP Socket for Redis on remote host myserver, port 6379, database 33
    • url: redis://:mynewpassword@myserver:6379/33

redis.cache.yml

If configured, redis.cache.yml overrides the resque.yml settings to configure the Redis database instance used for Rails.cache and other volatile non-persistent data which enhances the performance of GitLab. Settings here can be overridden by the environment variable GITLAB_REDIS_CACHE_CONFIG_FILE which provides an alternate location for configuration settings.

The order of precedence for the URL used to connect to the Redis instance used for cache is:

  1. URL from a configuration file pointed to by the GITLAB_REDIS_CACHE_CONFIG_FILE environment variable
  2. URL from redis.cache.yml
  3. URL from a configuration file pointed to by the GITLAB_REDIS_CONFIG_FILE environment variable
  4. URL from resque.yml
  5. redis://localhost:6380

The order of precedence for all other configuration settings for cache are selected from only the first of the following files found (if a setting is not provided in an earlier file, the remainder of the files are not searched):

  1. the configuration file pointed to by the GITLAB_REDIS_CACHE_CONFIG_FILE environment variable
  2. the configuration file redis.cache.yml
  3. the configuration file pointed to by the GITLAB_REDIS_CONFIG_FILE environment variable
  4. the configuration file resque.yml

redis.queues.yml

If configured, redis.queues.yml overrides the resque.yml settings to configure the Redis database instance used for clients of ::Gitlab::Redis::Queues. These queues are intended to be the foundation of reliable inter-process communication between modules, whether on the same host node, or within a cluster. The primary clients of the queues are SideKiq, Mailroom, CI Runner, Workhorse, and push services. Settings here can be overridden by the environment variable GITLAB_REDIS_QUEUES_CONFIG_FILE which provides an alternate location for configuration settings.

The order of precedence for the URL used to connect to the Redis instance used for queues is:

  1. URL from a configuration file pointed to by the GITLAB_REDIS_QUEUES_CONFIG_FILE environment variable
  2. URL from redis.queues.yml
  3. URL from a configuration file pointed to by the GITLAB_REDIS_CONFIG_FILE environment variable
  4. URL from resque.yml
  5. redis://localhost:6381

The order of precedence for all other configuration settings for queues are selected from only the first of the following files found (if a setting is not provided in an earlier file, the remainder of the files are not searched):

  1. the configuration file pointed to by the GITLAB_REDIS_QUEUES_CONFIG_FILE environment variable
  2. the configuration file redis.queues.yml
  3. the configuration file pointed to by the GITLAB_REDIS_CONFIG_FILE environment variable
  4. the configuration file resque.yml

redis.shared_state.yml

If configured, redis.shared_state.yml overrides the resque.yml settings to configure the Redis database instance used for clients of ::Gitlab::Redis::SharedState such as session state, and rate limiting. Settings here can be overridden by the environment variable GITLAB_REDIS_SHARED_STATE_CONFIG_FILE which provides an alternate location for configuration settings.

The order of precedence for the URL used to connect to the Redis instance used for shared_state is:

  1. URL from a configuration file pointed to by the GITLAB_REDIS_SHARED_STATE_CONFIG_FILE environment variable
  2. URL from redis.shared_state.yml
  3. URL from a configuration file pointed to by the GITLAB_REDIS_CONFIG_FILE environment variable
  4. URL from resque.yml
  5. redis://localhost:6382

The order of precedence for all other configuration settings for shared_state are selected from only the first of the following files found (if a setting is not provided in an earlier file, the remainder of the files are not searched):

  1. the configuration file pointed to by the GITLAB_REDIS_SHARED_STATE_CONFIG_FILE environment variable
  2. the configuration file redis.shared_state.yml
  3. the configuration file pointed to by the GITLAB_REDIS_CONFIG_FILE environment variable
  4. the configuration file resque.yml