diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-09-29 18:05:20 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-10-04 12:57:41 +0200 |
commit | 147e2b21be180d4b405c6ebe861971cb0dc9e6b2 (patch) | |
tree | 6f476ae707b158015b4b61ffc046cda8c888acca /config/gitlab.yml.example | |
parent | 4a4f809353a2e7007f8c6d33bfb1e4d09ed5a560 (diff) | |
download | gitlab-ce-147e2b21be180d4b405c6ebe861971cb0dc9e6b2.tar.gz |
Let fetch_ref pull from Gitaly instead of from disk
Diffstat (limited to 'config/gitlab.yml.example')
-rw-r--r-- | config/gitlab.yml.example | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example index c5c50c216e1..88771c5f5bb 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example @@ -499,6 +499,8 @@ production: &base # Gitaly settings gitaly: + # Path to the directory containing Gitaly client executables. + client_path: /home/git/gitaly # 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. @@ -664,7 +666,7 @@ test: gitaly_address: unix:tmp/tests/gitaly/gitaly.socket gitaly: - enabled: true + client_path: tmp/tests/gitaly token: secret backup: path: tmp/tests/backups |