1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-18 01:18:23 +02:00

Remove admonitions from Proxy docs (#8860)

This commit is contained in:
Melinda Fekete 2024-11-28 14:08:09 +01:00 committed by GitHub
parent 0bee07ddec
commit c83199db89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 24 deletions

View File

@ -136,8 +136,8 @@ export const OidcAuth = () => {
> >
documentation documentation
</a>{' '} </a>{' '}
to learn how to integrate with specific Open Id Connect to learn how to integrate with specific OpenID Connect
providers (Okta, Keycloak, Google, etc). <br /> providers (such as Okta and Keycloak). <br />
Callback URL:{' '} Callback URL:{' '}
<code>{uiConfig.unleashUrl}/auth/oidc/callback</code> <code>{uiConfig.unleashUrl}/auth/oidc/callback</code>
</Alert> </Alert>

View File

@ -128,7 +128,8 @@ export const SamlAuth = () => {
documentation documentation
</a>{' '} </a>{' '}
to learn how to integrate with specific SAML 2.0 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:{' '} Callback URL:{' '}
<code>{uiConfig.unleashUrl}/auth/saml/callback</code> <code>{uiConfig.unleashUrl}/auth/saml/callback</code>
</Alert> </Alert>

View File

@ -43,8 +43,7 @@ export const SsoGroupSettings = ({
<strong>Enable Group Syncing</strong> <strong>Enable Group Syncing</strong>
<p> <p>
Enables automatically syncing of users from the{' '} Enables automatically syncing of users from the{' '}
{ssoType} {ssoType} provider when a user logs in.
provider when a user logs in.
</p> </p>
</Grid> </Grid>
<Grid item md={6} style={{ padding: '20px' }}> <Grid item md={6} style={{ padding: '20px' }}>

View File

@ -2,27 +2,22 @@
title: Single Sign-On title: Single Sign-On
--- ---
:::note Availability :::note Availability
**Plan**: [Enterprise](https://www.getunleash.io/pricing) **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: To configure SSO, navigate to **Admin > Single sign-on** in the Unleash Admin UI. Admin access is required.
- username: `admin`
- password: `unleash4all` _(or `admin` if you started with Unleash v3)._
## Guides
Unleash enterprise supports multiple authentication providers.
For step-by-step configuration instructions, refer to the following guides:
- [OpenID Connect with Okta](../how-to/how-to-add-sso-open-id-connect) - [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 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 Keycloak](../how-to/how-to-add-sso-saml-keycloak)
- [SAML 2.0 with Microsoft Entra ID](../how-to/how-to-add-sso-azure-saml) - [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)

View File

@ -28,14 +28,7 @@ const DOCS = mapObject(enrich)({
}); });
const getAdmonitions = (data) => { const getAdmonitions = (data) => {
const admonitions = { 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': ``,
};
return [admonitions[data.slugName]]; return [admonitions[data.slugName]];
}; };