Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jwt.md « auth « administration « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b51e705ab52577090b50635a920ba544f95c134e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# JWT OmniAuth provider

To enable the JWT OmniAuth provider, you must register your application with JWT.
JWT will provide you with a secret key for you to use.

1.  On your GitLab server, open the configuration file.

    For Omnibus GitLab:

    ```sh
    sudo editor /etc/gitlab/gitlab.rb
    ```

    For installations from source:

    ```sh
    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.
1.  Add the provider configuration.

    For Omnibus GitLab:

    ```ruby
    gitlab_rails['omniauth_providers'] = [
      { name: 'jwt',
        app_secret: 'YOUR_APP_SECRET',
        args: {
                algorithm: 'HS256',
                uid_claim: 'email',
                required_claims: ["name", "email"],
                info_maps: { name: "name", email: "email" },
                auth_url: 'https://example.com/',
                valid_within: nil,
              }
      }
    ]
    ```

    For installation from source:

    ```
    - { name: 'jwt',
        app_secret: 'YOUR_APP_SECRET',
        args: {
                algorithm: 'HS256',
                uid_claim: 'email',
                required_claims: ["name", "email"],
                info_map: { name: "name", email: "email" },
                auth_url: 'https://example.com/',
                valid_within: nil,
              }
      }
    ```

    NOTE: **Note:** For more information on each configuration option refer to
    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.
1.  [Reconfigure GitLab][] or [restart GitLab][] for the changes to take effect if you
    installed GitLab via Omnibus or from source respectively.

On the sign in page there should now be a JWT icon below the regular sign in form.
Click the icon to begin the authentication process. JWT will ask the user to
sign in and authorize the GitLab application. If everything goes well, the user
will be redirected to GitLab and will be signed in.

[reconfigure GitLab]: ../restart_gitlab.md#omnibus-gitlab-reconfigure
[restart GitLab]: ../restart_gitlab.md#installations-from-source