Update GitLab config
This commit is contained in:
parent
6d1fb9d41d
commit
a9dd6b65ec
@ -31,7 +31,7 @@ production: &base
|
|||||||
gitlab:
|
gitlab:
|
||||||
## Web server settings (note: host is the FQDN, do not include http://)
|
## Web server settings (note: host is the FQDN, do not include http://)
|
||||||
host: localhost
|
host: localhost
|
||||||
port: 80 # Set to 443 if using HTTPS, see installation.md#using-https for additional HTTPS configuration details
|
port: 8086 # Set to 443 if using HTTPS, see installation.md#using-https for additional HTTPS configuration details
|
||||||
https: false # Set to true if using HTTPS, see installation.md#using-https for additional HTTPS configuration details
|
https: false # Set to true if using HTTPS, see installation.md#using-https for additional HTTPS configuration details
|
||||||
# The maximum time unicorn/puma can spend on the request. This needs to be smaller than the worker timeout.
|
# The maximum time unicorn/puma can spend on the request. This needs to be smaller than the worker timeout.
|
||||||
# Default is 95% of the worker timeout
|
# Default is 95% of the worker timeout
|
||||||
@ -94,19 +94,19 @@ production: &base
|
|||||||
# Uncomment and set to false if you need to disable email sending from GitLab (default: true)
|
# Uncomment and set to false if you need to disable email sending from GitLab (default: true)
|
||||||
# email_enabled: true
|
# email_enabled: true
|
||||||
# Email address used in the "From" field in mails sent by GitLab
|
# Email address used in the "From" field in mails sent by GitLab
|
||||||
email_from: example@example.com
|
email_from: git@9iron.club
|
||||||
email_display_name: GitLab
|
email_display_name: GitLab
|
||||||
email_reply_to: noreply@example.com
|
email_reply_to: noreply@9iron.club
|
||||||
email_subject_suffix: ''
|
email_subject_suffix: ''
|
||||||
email_smime:
|
email_smime:
|
||||||
# Uncomment and set to true if you need to enable email S/MIME signing (default: false)
|
# Uncomment and set to true if you need to enable email S/MIME signing (default: false)
|
||||||
# enabled: false
|
# enabled: false
|
||||||
# S/MIME private key file in PEM format, unencrypted
|
# S/MIME private key file in PEM format, unencrypted
|
||||||
# Default is '.gitlab_smime_key' relative to Rails.root (i.e. root of the GitLab app).
|
# Default is '.gitlab_smime_key' relative to Rails.root (i.e. root of the GitLab app).
|
||||||
# key_file: /home/git/gitlab/.gitlab_smime_key
|
# key_file: /var/gitlab/gitlab/.gitlab_smime_key
|
||||||
# S/MIME public certificate key in PEM format, will be attached to signed messages
|
# S/MIME public certificate key in PEM format, will be attached to signed messages
|
||||||
# Default is '.gitlab_smime_cert' relative to Rails.root (i.e. root of the GitLab app).
|
# Default is '.gitlab_smime_cert' relative to Rails.root (i.e. root of the GitLab app).
|
||||||
# cert_file: /home/git/gitlab/.gitlab_smime_cert
|
# cert_file: /var/gitlab/gitlab/.gitlab_smime_cert
|
||||||
|
|
||||||
# Email server smtp settings are in config/initializers/smtp_settings.rb.sample
|
# Email server smtp settings are in config/initializers/smtp_settings.rb.sample
|
||||||
|
|
||||||
@ -301,7 +301,7 @@ production: &base
|
|||||||
|
|
||||||
## Dependency Proxy
|
## Dependency Proxy
|
||||||
dependency_proxy:
|
dependency_proxy:
|
||||||
enabled: true
|
enabled: false
|
||||||
# The location where build packages are stored (default: shared/dependency_proxy).
|
# The location where build packages are stored (default: shared/dependency_proxy).
|
||||||
# storage_path: shared/dependency_proxy
|
# storage_path: shared/dependency_proxy
|
||||||
object_store:
|
object_store:
|
||||||
@ -322,7 +322,7 @@ production: &base
|
|||||||
|
|
||||||
## Terraform state
|
## Terraform state
|
||||||
terraform_state:
|
terraform_state:
|
||||||
enabled: true
|
enabled: false
|
||||||
# The location where Terraform state files are stored (default: shared/terraform_state).
|
# The location where Terraform state files are stored (default: shared/terraform_state).
|
||||||
# storage_path: shared/terraform_state
|
# storage_path: shared/terraform_state
|
||||||
object_store:
|
object_store:
|
||||||
@ -357,7 +357,7 @@ production: &base
|
|||||||
|
|
||||||
# File that contains the shared secret key for verifying access for gitlab-pages.
|
# File that contains the shared secret key for verifying access for gitlab-pages.
|
||||||
# Default is '.gitlab_pages_secret' relative to Rails.root (i.e. root of the GitLab app).
|
# Default is '.gitlab_pages_secret' relative to Rails.root (i.e. root of the GitLab app).
|
||||||
# secret_file: /home/git/gitlab/.gitlab_pages_secret
|
# secret_file: /var/gitlab/gitlab/.gitlab_pages_secret
|
||||||
|
|
||||||
## Mattermost
|
## Mattermost
|
||||||
## For enabling Add to Mattermost button
|
## For enabling Add to Mattermost button
|
||||||
@ -960,7 +960,7 @@ production: &base
|
|||||||
# Gitaly settings
|
# Gitaly settings
|
||||||
gitaly:
|
gitaly:
|
||||||
# Path to the directory containing Gitaly client executables.
|
# Path to the directory containing Gitaly client executables.
|
||||||
client_path: /home/git/gitaly
|
client_path: /var/gitlab/gitaly
|
||||||
# Default Gitaly authentication token. Can be overridden per storage. Can
|
# Default Gitaly authentication token. Can be overridden per storage. Can
|
||||||
# be left blank when Gitaly is running locally on a Unix socket, which
|
# be left blank when Gitaly is running locally on a Unix socket, which
|
||||||
# is the normal way to deploy Gitaly.
|
# is the normal way to deploy Gitaly.
|
||||||
@ -978,8 +978,8 @@ production: &base
|
|||||||
# real path not the symlink.
|
# real path not the symlink.
|
||||||
storages: # You must have at least a `default` storage path.
|
storages: # You must have at least a `default` storage path.
|
||||||
default:
|
default:
|
||||||
path: /home/git/repositories/
|
path: /var/gitlab/repositories/
|
||||||
gitaly_address: unix:/home/git/gitlab/tmp/sockets/private/gitaly.socket # TCP connections are supported too (e.g. tcp://host:port). TLS connections are also supported using the system certificate pool (eg: tls://host:port).
|
gitaly_address: unix:/var/gitlab/gitlab/tmp/sockets/private/gitaly.socket # TCP connections are supported too (e.g. tcp://host:port). TLS connections are also supported using the system certificate pool (eg: tls://host:port).
|
||||||
# gitaly_token: 'special token' # Optional: override global gitaly.token for this storage.
|
# gitaly_token: 'special token' # Optional: override global gitaly.token for this storage.
|
||||||
|
|
||||||
## Backup settings
|
## Backup settings
|
||||||
@ -1025,12 +1025,12 @@ production: &base
|
|||||||
|
|
||||||
## GitLab Shell settings
|
## GitLab Shell settings
|
||||||
gitlab_shell:
|
gitlab_shell:
|
||||||
path: /home/git/gitlab-shell/
|
path: /var/gitlab/gitlab-shell/
|
||||||
authorized_keys_file: /home/git/.ssh/authorized_keys
|
authorized_keys_file: /var/gitlab/.ssh/authorized_keys
|
||||||
|
|
||||||
# File that contains the secret key for verifying access for gitlab-shell.
|
# File that contains the secret key for verifying access for gitlab-shell.
|
||||||
# Default is '.gitlab_shell_secret' relative to Rails.root (i.e. root of the GitLab app).
|
# Default is '.gitlab_shell_secret' relative to Rails.root (i.e. root of the GitLab app).
|
||||||
# secret_file: /home/git/gitlab/.gitlab_shell_secret
|
# secret_file: /var/gitlab/gitlab/.gitlab_shell_secret
|
||||||
|
|
||||||
# Git over HTTP
|
# Git over HTTP
|
||||||
upload_pack: true
|
upload_pack: true
|
||||||
@ -1045,11 +1045,11 @@ production: &base
|
|||||||
workhorse:
|
workhorse:
|
||||||
# File that contains the secret key for verifying access for gitlab-workhorse.
|
# File that contains the secret key for verifying access for gitlab-workhorse.
|
||||||
# Default is '.gitlab_workhorse_secret' relative to Rails.root (i.e. root of the GitLab app).
|
# Default is '.gitlab_workhorse_secret' relative to Rails.root (i.e. root of the GitLab app).
|
||||||
# secret_file: /home/git/gitlab/.gitlab_workhorse_secret
|
# secret_file: /var/gitlab/gitlab/.gitlab_workhorse_secret
|
||||||
|
|
||||||
## GitLab Elasticsearch settings
|
## GitLab Elasticsearch settings
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
indexer_path: /home/git/gitlab-elasticsearch-indexer/
|
indexer_path: /var/gitlab/gitlab-elasticsearch-indexer/
|
||||||
|
|
||||||
## Git settings
|
## Git settings
|
||||||
# CAUTION!
|
# CAUTION!
|
||||||
|
Loading…
Reference in New Issue
Block a user