diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2017-07-27 11:03:29 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-07-27 11:03:29 +0000 |
commit | 4d05e85375b81d94ef828c8c5544bf62a5abc024 (patch) | |
tree | 971edade6cbb2c8ed879ce9784b0a9434a69a3aa | |
parent | 72e88b0fa7d40d7f51205b6af9cccee0bdb789c3 (diff) | |
parent | e4028988b4f8428609abca36c92bfeca747bbefd (diff) | |
download | gitlab-ce-4d05e85375b81d94ef828c8c5544bf62a5abc024.tar.gz |
Merge branch 'HA-external-urls-docs' into 'master'
Add note on external url setting for HA clusters.
See merge request !13089
-rw-r--r-- | doc/administration/high_availability/gitlab.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/administration/high_availability/gitlab.md b/doc/administration/high_availability/gitlab.md index 137fed35a73..e2cf281bc49 100644 --- a/doc/administration/high_availability/gitlab.md +++ b/doc/administration/high_availability/gitlab.md @@ -70,6 +70,12 @@ for each GitLab application server in your environment. gitlab_rails['redis_host'] = '10.1.0.6' # IP/hostname of Redis server gitlab_rails['redis_password'] = 'Redis Password' ``` + + > **Note:** To maintain uniformity of links across HA clusters, the `external_url` + on the master as well as all secondary application servers should point to the + eventual url that users will use to access GitLab. In a typical HA setup, + this will be the url of the load balancer which will route traffic to all + GitLab application servers in the HA cluster. 1. Run `sudo gitlab-ctl reconfigure` to compile the configuration. |