Commit f441dd20 authored by Evan Read's avatar Evan Read

Merge branch 'praefect-external-url' into 'master'

Move external URL to step to start

See merge request gitlab-org/gitlab!31166
parents 8cd85928 9f81141d
...@@ -557,6 +557,16 @@ Particular attention should be shown to: ...@@ -557,6 +557,16 @@ Particular attention should be shown to:
sudo -i sudo -i
``` ```
1. Configure the `external_url` so that files could be served by GitLab
by proper endpoint access by editing `/etc/gitlab/gitlab.rb`:
You will need to replace `GITLAB_SERVER_URL` with the real external facing
URL on which current GitLab instance is serving:
```ruby
external_url 'GITLAB_SERVER_URL'
```
1. Add the Praefect cluster as a storage location by editing 1. Add the Praefect cluster as a storage location by editing
`/etc/gitlab/gitlab.rb`. `/etc/gitlab/gitlab.rb`.
...@@ -596,16 +606,6 @@ Particular attention should be shown to: ...@@ -596,16 +606,6 @@ Particular attention should be shown to:
gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN' gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN'
``` ```
1. Configure the `external_url` so that files could be served by GitLab
by proper endpoint access by editing `/etc/gitlab/gitlab.rb`:
You will need to replace `GITLAB_SERVER_URL` with the real external facing URL on which
current GitLab instance is serving:
```ruby
external_url 'GITLAB_SERVER_URL'
```
1. Add Prometheus monitoring settings by editing `/etc/gitlab/gitlab.rb`. 1. Add Prometheus monitoring settings by editing `/etc/gitlab/gitlab.rb`.
You will need to replace: You will need to replace:
......
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