diff options
author | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2018-08-05 12:46:09 +0000 |
---|---|---|
committer | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2018-08-05 12:46:09 +0000 |
commit | a24fa18c4f1b5025f766253e7d77c0318d71de25 (patch) | |
tree | c90929e86de61ec1684d8f762923d31aa6aee730 /doc/administration | |
parent | c2c9b3ddc71053cc9bc3754c8c6007ad8b6f653c (diff) | |
download | gitlab-ce-a24fa18c4f1b5025f766253e7d77c0318d71de25.tar.gz |
improve gitaly on seperate server storage details
Diffstat (limited to 'doc/administration')
-rw-r--r-- | doc/administration/gitaly/index.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/administration/gitaly/index.md b/doc/administration/gitaly/index.md index d9a61aea6ef..75999399b19 100644 --- a/doc/administration/gitaly/index.md +++ b/doc/administration/gitaly/index.md @@ -101,7 +101,9 @@ documentation on configuring Gitaly authentication](https://gitlab.com/gitlab-org/gitaly/blob/master/doc/configuration/README.md#authentication) . -In most or all cases the storage paths below end in `/repositories`. Check the +> +**NOTE:** In most or all cases the storage paths below end in `/repositories` which is +different than `path` in `git_data_dirs` of Omnibus installations. Check the directory layout on your Gitaly server to be sure. Omnibus installations: @@ -111,8 +113,8 @@ Omnibus installations: gitaly['listen_addr'] = '0.0.0.0:9999' gitaly['auth_token'] = 'abc123secret' gitaly['storage'] = [ - { 'name' => 'default', 'path' => '/path/to/default/repositories' }, - { 'name' => 'storage1', 'path' => '/path/to/storage1/repositories' }, + { 'name' => 'default', 'path' => '/mnt/gitlab/default/repositories' }, + { 'name' => 'storage1', 'path' => '/mnt/gitlab/storage1/repositories' }, ] ``` @@ -127,11 +129,11 @@ token = 'abc123secret' [[storage] name = 'default' -path = '/path/to/default/repositories' +path = '/mnt/gitlab/default/repositories' [[storage]] name = 'storage1' -path = '/path/to/storage1/repositories' +path = '/mnt/gitlab/storage1/repositories' ``` Again, reconfigure (Omnibus) or restart (source). |