mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-18 13:58:25 +00:00
56 lines
2.2 KiB
YAML
56 lines
2.2 KiB
YAML
#
|
||
# 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
|
||
#
|
||
|
||
# GitLab user. git by default
|
||
user: git
|
||
|
||
# URL to GitLab instance, used for API calls. Default: http://localhost:8080.
|
||
# For relative URL support read http://doc.gitlab.com/ce/install/relative_url.html
|
||
# You only have to change the default if you have configured Unicorn
|
||
# to listen on a custom port, or if you have configured Unicorn to
|
||
# only listen on a Unix domain socket. For Unix domain sockets use
|
||
# "http+unix://<urlquoted-path-to-socket>", e.g.
|
||
# "http+unix://%2Fpath%2Fto%2Fsocket"
|
||
gitlab_url: "http://localhost:8080{{GITLAB_RELATIVE_URL_ROOT}}"
|
||
|
||
# See installation.md#using-https for additional HTTPS configuration details.
|
||
http_settings:
|
||
# read_timeout: 300
|
||
# user: someone
|
||
# password: somepass
|
||
# ca_file: /etc/ssl/cert.pem
|
||
# ca_path: /etc/pki/tls/certs
|
||
self_signed_cert: {{SSL_SELF_SIGNED}}
|
||
|
||
# File used as authorized_keys for gitlab user
|
||
auth_file: "{{GITLAB_HOME}}/.ssh/authorized_keys"
|
||
|
||
# File that contains the secret key for verifying access to GitLab.
|
||
# Default is .gitlab_shell_secret in the gitlab-shell directory.
|
||
secret_file: "{{GITLAB_SHELL_INSTALL_DIR}}/.gitlab_shell_secret"
|
||
|
||
# Parent directory for global custom hook directories (pre-receive.d, update.d, post-receive.d)
|
||
# Default is hooks in the gitlab-shell directory.
|
||
custom_hooks_dir: "{{GITLAB_SHELL_INSTALL_DIR}}/hooks"
|
||
|
||
# Log file.
|
||
# Default is gitlab-shell.log in the root directory.
|
||
log_file: "{{GITLAB_LOG_DIR}}/gitlab-shell/gitlab-shell.log"
|
||
|
||
# Log level. INFO by default
|
||
log_level: INFO
|
||
|
||
# Audit usernames.
|
||
# Set to true to see real usernames in the logs instead of key ids, which is easier to follow, but
|
||
# incurs an extra API call on every gitlab-shell command.
|
||
audit_usernames: false
|
||
|
||
# Git trace log file.
|
||
# If set, git commands receive GIT_TRACE* environment variables
|
||
# See https://git-scm.com/book/es/v2/Git-Internals-Environment-Variables#Debugging for documentation
|
||
# An absolute path starting with / – the trace output will be appended to that file.
|
||
# It needs to exist so we can check permissions and avoid to throwing warnings to the users.
|
||
git_trace_log_file:
|