mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-20 00:08:02 +01:00
Remove admonitions from Proxy docs (#8860)
This commit is contained in:
parent
0bee07ddec
commit
c83199db89
@ -136,8 +136,8 @@ export const OidcAuth = () => {
|
||||
>
|
||||
documentation
|
||||
</a>{' '}
|
||||
to learn how to integrate with specific Open Id Connect
|
||||
providers (Okta, Keycloak, Google, etc). <br />
|
||||
to learn how to integrate with specific OpenID Connect
|
||||
providers (such as Okta and Keycloak). <br />
|
||||
Callback URL:{' '}
|
||||
<code>{uiConfig.unleashUrl}/auth/oidc/callback</code>
|
||||
</Alert>
|
||||
|
@ -128,7 +128,8 @@ export const SamlAuth = () => {
|
||||
documentation
|
||||
</a>{' '}
|
||||
to learn how to integrate with specific SAML 2.0
|
||||
providers (Okta, Keycloak, etc). <br />
|
||||
providers (such as Okta, Keycloak, and Microsoft Entra
|
||||
ID). <br />
|
||||
Callback URL:{' '}
|
||||
<code>{uiConfig.unleashUrl}/auth/saml/callback</code>
|
||||
</Alert>
|
||||
|
@ -43,8 +43,7 @@ export const SsoGroupSettings = ({
|
||||
<strong>Enable Group Syncing</strong>
|
||||
<p>
|
||||
Enables automatically syncing of users from the{' '}
|
||||
{ssoType}
|
||||
provider when a user logs in.
|
||||
{ssoType} provider when a user logs in.
|
||||
</p>
|
||||
</Grid>
|
||||
<Grid item md={6} style={{ padding: '20px' }}>
|
||||
|
@ -2,27 +2,22 @@
|
||||
title: Single Sign-On
|
||||
---
|
||||
|
||||
|
||||
:::note Availability
|
||||
|
||||
**Plan**: [Enterprise](https://www.getunleash.io/pricing)
|
||||
|
||||
:::
|
||||
|
||||
Unleash Enterprise supports SAML 2.0, OpenID Connect and Google Authentication. In addition, Unleash supports username/password authentication out of the box.
|
||||
## Overview
|
||||
|
||||
### Before you start
|
||||
Unleash provides single sign-on (SSO) support through SAML 2.0, OpenID Connect, and username/password authentication.
|
||||
|
||||
In order to configure Single-Sign-On you will need to log in to the Unleash instance with a user that have "Admin" role. If you are self-hosting Unleash then a default user will be automatically created the first time you start unleash:
|
||||
|
||||
- username: `admin`
|
||||
- password: `unleash4all` _(or `admin` if you started with Unleash v3)._
|
||||
|
||||
## Guides
|
||||
|
||||
Unleash enterprise supports multiple authentication providers.
|
||||
To configure SSO, navigate to **Admin > Single sign-on** in the Unleash Admin UI. Admin access is required.
|
||||
|
||||
For step-by-step configuration instructions, refer to the following guides:
|
||||
- [OpenID Connect with Okta](../how-to/how-to-add-sso-open-id-connect)
|
||||
- [SAML 2.0 with Okta](../how-to/how-to-add-sso-saml)
|
||||
- [SAML 2.0 with Keycloak](../how-to/how-to-add-sso-saml-keycloak)
|
||||
- [SAML 2.0 with Microsoft Entra ID](../how-to/how-to-add-sso-azure-saml)
|
||||
- [Google Authentication](../how-to/how-to-add-sso-google) (deprecated)
|
||||
- [Google Authentication](../how-to/how-to-add-sso-google) (deprecated)
|
||||
|
@ -28,14 +28,7 @@ const DOCS = mapObject(enrich)({
|
||||
});
|
||||
|
||||
const getAdmonitions = (data) => {
|
||||
const admonitions = {
|
||||
'unleash-proxy': `:::tip
|
||||
|
||||
Looking for how to run the Unleash proxy? Check out the [_how to run the Unleash proxy_ guide](../how-to/how-to-run-the-unleash-proxy.mdx)!
|
||||
|
||||
:::`,
|
||||
'unleash-edge': ``,
|
||||
};
|
||||
const admonitions = {};
|
||||
|
||||
return [admonitions[data.slugName]];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user