Commit 0e3d745f authored by Maxime Roussin-Bélanger's avatar Maxime Roussin-Bélanger Committed by Maxime Roussin-Bélanger

add missing regionendpoint documentation.

parent 45927684
...@@ -387,6 +387,9 @@ So you must use an address that resolves and is accessible outside GitLab server ...@@ -387,6 +387,9 @@ So you must use an address that resolves and is accessible outside GitLab server
**Omnibus GitLab installations** **Omnibus GitLab installations**
> **Note:**
`regionendpoint` is only required when configuring an S3 compatible service such as Minio, by entering a URL such as http://127.0.0.1:9000
To configure the storage driver in Omnibus: To configure the storage driver in Omnibus:
1. Edit `/etc/gitlab/gitlab.rb`: 1. Edit `/etc/gitlab/gitlab.rb`:
...@@ -397,7 +400,8 @@ To configure the storage driver in Omnibus: ...@@ -397,7 +400,8 @@ To configure the storage driver in Omnibus:
'accesskey' => 's3-access-key', 'accesskey' => 's3-access-key',
'secretkey' => 's3-secret-key-for-access-key', 'secretkey' => 's3-secret-key-for-access-key',
'bucket' => 'your-s3-bucket', 'bucket' => 'your-s3-bucket',
'region' => 'your-s3-region' 'region' => 'your-s3-region',
'regionendpoint' => 'your-s3-regionendpoint'
} }
} }
``` ```
...@@ -420,6 +424,7 @@ storage: ...@@ -420,6 +424,7 @@ storage:
secretkey: 'secret123' secretkey: 'secret123'
bucket: 'gitlab-registry-bucket-AKIAKIAKI' bucket: 'gitlab-registry-bucket-AKIAKIAKI'
region: 'your-s3-region' region: 'your-s3-region'
regionendpoint: 'your-s3-regionendpoint'
cache: cache:
blobdescriptor: inmemory blobdescriptor: inmemory
delete: delete:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment