mirror of
https://github.com/sameersbn/docker-gitlab.git
synced 2026-01-18 13:58:25 +00:00
Add GITLAB_PAGES_CLIENT_PATH
Signed-off-by: solidnerd <niclas@mietz.io>
This commit is contained in:
parent
c570f1c196
commit
df4d252cc9
@ -469,17 +469,11 @@ production: &base
|
||||
|
||||
# Gitaly settings
|
||||
gitaly:
|
||||
# The socket_path setting is optional and obsolete. When this is set
|
||||
# GitLab assumes it can reach a Gitaly services via a Unix socket at
|
||||
# this path. When this is commented out GitLab will not use Gitaly.
|
||||
#
|
||||
# This setting is obsolete because we expect it to be moved under
|
||||
# repositories/storages in GitLab 9.1.
|
||||
#
|
||||
# socket_path: tmp/sockets/gitaly.socket
|
||||
# This setting controls whether GitLab uses Gitaly (new component
|
||||
# introduced in 9.0). Eventually Gitaly use will become mandatory and
|
||||
# this option will disappear.
|
||||
# Path to the directory containing Gitaly client executables.
|
||||
client_path: {{GITALY_CLIENT_PATH}}
|
||||
# Default Gitaly authentication token. Can be overriden per storage. Can
|
||||
# be left blank when Gitaly is running locally on a Unix socket, which
|
||||
# is the normal way to deploy Gitaly.
|
||||
token: {{GITALY_TOKEN}}
|
||||
|
||||
#
|
||||
|
||||
@ -382,6 +382,7 @@ GITLAB_PAGES_EXTERNAL_HTTP=${GITLAB_PAGES_EXTERNAL_HTTP:-}
|
||||
GITLAB_PAGES_EXTERNAL_HTTPS=${GITLAB_PAGES_EXTERNAL_HTTPS:-}
|
||||
|
||||
## Gitaly
|
||||
GITALY_CLIENT_PATH=${GITALY_CLIENT_PATH:-$GITLAB_GITALY_INSTALL_DIR}
|
||||
GITALY_TOKEN=${GITALY_TOKEN:-}
|
||||
GITALY_SOCKET_PATH=${GITLAB_INSTALL_DIR}/tmp/sockets/private/gitaly.socket
|
||||
GITALY_ADDRESS=${GITALY_ADDRESS:-unix:$GITALY_SOCKET_PATH}
|
||||
|
||||
@ -280,6 +280,7 @@ gitlab_configure_gitaly() {
|
||||
GITLAB_REPOS_DIR
|
||||
|
||||
update_template ${GITLAB_CONFIG} \
|
||||
GITALY_CLIENT_PATH \
|
||||
GITALY_TOKEN
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user