diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-01 00:08:04 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-01 00:08:04 +0000 |
commit | b2152c3f869fda3e77874e3ce1c8e1bd489cc9ec (patch) | |
tree | 4bb23728ed7f1fe4b39cc452146dac35195c70e7 /doc/administration/auth/okta.md | |
parent | 58ff36675b931fa91e47aa79f437c1e664c85d98 (diff) | |
download | gitlab-ce-b2152c3f869fda3e77874e3ce1c8e1bd489cc9ec.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/auth/okta.md')
-rw-r--r-- | doc/administration/auth/okta.md | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/doc/administration/auth/okta.md b/doc/administration/auth/okta.md index 7b5effe3d77..c83645ffe74 100644 --- a/doc/administration/auth/okta.md +++ b/doc/administration/auth/okta.md @@ -42,21 +42,6 @@ Now that the Okta app is configured, it's time to enable it in GitLab. ## Configure GitLab -1. On your GitLab server, open the configuration file: - - **For Omnibus GitLab installations** - - ```shell - sudo editor /etc/gitlab/gitlab.rb - ``` - - **For installations from source** - - ```shell - cd /home/git/gitlab - sudo -u git -H editor config/gitlab.yml - ``` - 1. See [Initial OmniAuth Configuration](../../integration/omniauth.md#initial-omniauth-configuration) for initial settings. @@ -66,13 +51,19 @@ Now that the Okta app is configured, it's time to enable it in GitLab. **For Omnibus GitLab installations** + Edit `/etc/gitlab/gitlab.rb`: + ```ruby gitlab_rails['omniauth_allow_single_sign_on'] = ['saml'] gitlab_rails['omniauth_block_auto_created_users'] = false ``` + --- + **For installations from source** + Edit `config/gitlab.yml`: + ```yaml allow_single_sign_on: ["saml"] block_auto_created_users: false @@ -83,15 +74,21 @@ Now that the Okta app is configured, it's time to enable it in GitLab. **For Omnibus GitLab installations** + Edit `/etc/gitlab/gitlab.rb`: + ```ruby gitlab_rails['omniauth_auto_link_saml_user'] = true ``` + --- + **For installations from source** - ```yaml - auto_link_saml_user: true - ``` + Edit `config/gitlab.yml`: + + ```yaml + auto_link_saml_user: true + ``` 1. Add the provider configuration. |