debian-mirror-gitlab/doc/administration/auth/jwt.md

92 lines
3.3 KiB
Markdown
Raw Normal View History

2019-09-30 21:07:59 +05:30
---
type: reference
2020-06-23 00:09:42 +05:30
stage: Manage
group: Access
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2019-09-30 21:07:59 +05:30
---
2021-06-08 01:23:25 +05:30
# JWT OmniAuth provider **(FREE SELF)**
2018-05-09 12:01:36 +05:30
To enable the JWT OmniAuth provider, you must register your application with JWT.
2022-01-26 12:08:38 +05:30
JWT provides you with a secret key for you to use.
2018-05-09 12:01:36 +05:30
2019-09-30 21:07:59 +05:30
1. On your GitLab server, open the configuration file.
For Omnibus GitLab:
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
sudo editor /etc/gitlab/gitlab.rb
```
For installations from source:
2020-03-13 15:44:24 +05:30
```shell
2019-09-30 21:07:59 +05:30
cd /home/git/gitlab
sudo -u git -H editor config/gitlab.yml
```
2021-12-11 22:18:48 +05:30
1. See [Configure initial settings](../../integration/omniauth.md#configure-initial-settings) for initial settings.
2019-09-30 21:07:59 +05:30
1. Add the provider configuration.
For Omnibus GitLab:
```ruby
gitlab_rails['omniauth_providers'] = [
2022-01-26 12:08:38 +05:30
{ name: "jwt",
label: "Provider name", # optional label for login button, defaults to "Jwt"
2019-09-30 21:07:59 +05:30
args: {
2022-01-26 12:08:38 +05:30
secret: "YOUR_APP_SECRET",
algorithm: "HS256", # Supported algorithms: "RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "HS256", "HS384", "HS512"
uid_claim: "email",
required_claims: ["name", "email"],
info_map: { name: "name", email: "email" },
auth_url: "https://example.com/",
2019-09-30 21:07:59 +05:30
valid_within: 3600 # 1 hour
}
}
]
```
For installation from source:
2020-03-13 15:44:24 +05:30
```yaml
2019-09-30 21:07:59 +05:30
- { name: 'jwt',
2022-01-26 12:08:38 +05:30
label: 'Provider name', # optional label for login button, defaults to "Jwt"
2019-09-30 21:07:59 +05:30
args: {
secret: 'YOUR_APP_SECRET',
algorithm: 'HS256', # Supported algorithms: 'RS256', 'RS384', 'RS512', 'ES256', 'ES384', 'ES512', 'HS256', 'HS384', 'HS512'
uid_claim: 'email',
required_claims: ['name', 'email'],
info_map: { name: 'name', email: 'email' },
auth_url: 'https://example.com/',
valid_within: 3600 # 1 hour
}
}
```
2021-02-22 17:27:13 +05:30
NOTE:
2020-07-28 23:09:34 +05:30
For more information on each configuration option refer to
2019-09-30 21:07:59 +05:30
the [OmniAuth JWT usage documentation](https://github.com/mbleigh/omniauth-jwt#usage).
1. Change `YOUR_APP_SECRET` to the client secret and set `auth_url` to your redirect URL.
1. Save the configuration file.
2020-05-24 23:13:21 +05:30
1. [Reconfigure](../restart_gitlab.md#omnibus-gitlab-reconfigure) or [restart GitLab](../restart_gitlab.md#installations-from-source) for the changes to take effect if you
2019-09-30 21:07:59 +05:30
installed GitLab via Omnibus or from source respectively.
2018-05-09 12:01:36 +05:30
On the sign in page there should now be a JWT icon below the regular sign in form.
2022-01-26 12:08:38 +05:30
Click the icon to begin the authentication process. JWT asks the user to
2018-05-09 12:01:36 +05:30
sign in and authorize the GitLab application. If everything goes well, the user
2022-01-26 12:08:38 +05:30
is redirected to GitLab and signed in.
2018-05-09 12:01:36 +05:30
2019-09-30 21:07:59 +05:30
<!-- ## Troubleshooting
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
one might have when setting this up, or when something is changed, or on upgrading, it's
important to describe those, too. Think of things that may go wrong and include them here.
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.
Each scenario can be a third-level heading, e.g. `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->