mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-02-22 22:43:29 +08:00
Updated SSO Authentication (markdown)
parent
c2e9c4e77a
commit
e97dfe6f35
1 changed files with 2 additions and 1 deletions
|
@ -114,13 +114,14 @@ To link a user to SSO add a new `credentials` entry:
|
||||||
credentials:
|
credentials:
|
||||||
...
|
...
|
||||||
+ - type: sso
|
+ - type: sso
|
||||||
|
+ provider: azure
|
||||||
+ email: c.wilde@acme.in
|
+ email: c.wilde@acme.in
|
||||||
+ require:
|
+ require:
|
||||||
+ http: [sso]
|
+ http: [sso]
|
||||||
+ ssh: [web]
|
+ ssh: [web]
|
||||||
```
|
```
|
||||||
|
|
||||||
Here, we've also set SSO to be the only required login credential for HTTP auth, and have set SSH to use out-of-band web authentication.
|
Here, we've also set SSO to be the only required login credential for HTTP auth, and have set SSH to use out-of-band web authentication. You can omit the `provider` key if there's only one provider, or if you don't care which provider confirms the user's e-mail.
|
||||||
|
|
||||||
> `web` (OOB web authentication) means that Warpgate will send a login link to the SSH client and will wait for the user to authenticate themselves in a browser. The auth requirements will be the same as set for the `http` protocol.
|
> `web` (OOB web authentication) means that Warpgate will send a login link to the SSH client and will wait for the user to authenticate themselves in a browser. The auth requirements will be the same as set for the `http` protocol.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue