website: remove remaining /index URLs
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
4e63f0f215
commit
708ff300a3
|
@ -28,7 +28,7 @@ At a base level a policy is a yes/no gate. It will either evaluate to True or Fa
|
||||||
|
|
||||||
See [Policies](./policies/)
|
See [Policies](./policies/)
|
||||||
|
|
||||||
### Stages & Stages
|
### Flows & Stages
|
||||||
|
|
||||||
Flows are an ordered sequence of stages. These flows can be used to define how a user authenticates, enrolls, etc.
|
Flows are an ordered sequence of stages. These flows can be used to define how a user authenticates, enrolls, etc.
|
||||||
|
|
||||||
|
|
|
@ -36,16 +36,16 @@ This stage should always contain a [**User Logout**](stages/user_logout.md) stag
|
||||||
|
|
||||||
### Enrollment
|
### Enrollment
|
||||||
|
|
||||||
This designates a flow for enrollment. This flow can contain any amount of verification stages, such as [**email**](stages/email/index.md) or [**captcha**](stages/captcha/index.md). At the end, to create the user, you can use the [**user_write**](stages/user_write.md) stage, which either updates the currently staged user, or if none exists, creates a new one.
|
This designates a flow for enrollment. This flow can contain any amount of verification stages, such as [**email**](stages/email/) or [**captcha**](stages/captcha/). At the end, to create the user, you can use the [**user_write**](stages/user_write.md) stage, which either updates the currently staged user, or if none exists, creates a new one.
|
||||||
|
|
||||||
### Unenrollment
|
### Unenrollment
|
||||||
|
|
||||||
This designates a flow for unenrollment. This flow can contain any amount of verification stages, such as [**email**](stages/email/index.md) or [**captcha**](stages/captcha/index.md). As a final stage, to delete the account, use the [**user_delete**](stages/user_delete.md) stage.
|
This designates a flow for unenrollment. This flow can contain any amount of verification stages, such as [**email**](stages/email/) or [**captcha**](stages/captcha/). As a final stage, to delete the account, use the [**user_delete**](stages/user_delete.md) stage.
|
||||||
|
|
||||||
### Recovery
|
### Recovery
|
||||||
|
|
||||||
This designates a flow for recovery. This flow normally contains an [**identification**](stages/identification/index.md) stage to find the user. It can also contain any amount of verification stages, such as [**email**](stages/email/index.md) or [**captcha**](stages/captcha/index.md).
|
This designates a flow for recovery. This flow normally contains an [**identification**](stages/identification/) stage to find the user. It can also contain any amount of verification stages, such as [**email**](stages/email/) or [**captcha**](stages/captcha/).
|
||||||
Afterwards, use the [**prompt**](stages/prompt/index.md) stage to ask the user for a new password and the [**user_write**](stages/user_write.md) stage to update the password.
|
Afterwards, use the [**prompt**](stages/prompt/) stage to ask the user for a new password and the [**user_write**](stages/user_write.md) stage to update the password.
|
||||||
|
|
||||||
### Setup
|
### Setup
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@ title: Authenticator Validation Stage
|
||||||
|
|
||||||
This stage validates an already configured Authenticator Device. This device has to be configured using any of the other authenticator stages:
|
This stage validates an already configured Authenticator Device. This device has to be configured using any of the other authenticator stages:
|
||||||
|
|
||||||
- [Duo authenticator stage](../authenticator_duo/index.md)
|
- [Duo authenticator stage](../authenticator_duo/)
|
||||||
- [SMS authenticator stage](../authenticator_sms/index.md).
|
- [SMS authenticator stage](../authenticator_sms/).
|
||||||
- [Static authenticator stage](../authenticator_static/index.md).
|
- [Static authenticator stage](../authenticator_static/).
|
||||||
- [TOTP authenticator stage](../authenticator_totp/index.md)
|
- [TOTP authenticator stage](../authenticator_totp/)
|
||||||
- [WebAuth authenticator stage](../authenticator_webauthn/index.md).
|
- [WebAuth authenticator stage](../authenticator_webauthn/).
|
||||||
|
|
||||||
You can select which type of device classes are allowed.
|
You can select which type of device classes are allowed.
|
||||||
|
|
||||||
|
|
|
@ -10,4 +10,4 @@ To check if a user has used an invitation within a policy, you can check `reques
|
||||||
|
|
||||||
To use an invitation, use the URL `https://authentik.tld/if/flow/your-enrollment-flow/?itoken=invitation-token`.
|
To use an invitation, use the URL `https://authentik.tld/if/flow/your-enrollment-flow/?itoken=invitation-token`.
|
||||||
|
|
||||||
You can also prompt the user for an invite by using the [*Prompt stage*](../prompt/index.md) by using a field with a field key of `token`.
|
You can also prompt the user for an invite by using the [*Prompt stage*](../prompt/) by using a field with a field key of `token`.
|
||||||
|
|
|
@ -31,7 +31,7 @@ echo "AUTHENTIK_ERROR_REPORTING__ENABLED=true" >> .env
|
||||||
|
|
||||||
## Email configuration (optional, but recommended)
|
## Email configuration (optional, but recommended)
|
||||||
|
|
||||||
It is also recommended to configure global email credentials. These are used by authentik to notify you about alerts and configuration issues. They can also be used by [Email stages](flow/stages/email/index.md) to send verification/recovery emails.
|
It is also recommended to configure global email credentials. These are used by authentik to notify you about alerts and configuration issues. They can also be used by [Email stages](../flow/stages/email/) to send verification/recovery emails.
|
||||||
|
|
||||||
Append this block to your `.env` file
|
Append this block to your `.env` file
|
||||||
|
|
||||||
|
|
|
@ -46,4 +46,4 @@ helm install authentik authentik/authentik -f values.yaml
|
||||||
|
|
||||||
This installation automatically applies database migrations on startup. After the installation is done, navigate to the `https://<ingress you've specified>/if/flow/initial-setup/`, to set a password for the akadmin user.
|
This installation automatically applies database migrations on startup. After the installation is done, navigate to the `https://<ingress you've specified>/if/flow/initial-setup/`, to set a password for the akadmin user.
|
||||||
|
|
||||||
It is also recommended to configure global email credentials. These are used by authentik to notify you about alerts, configuration issues. They can also be used by [Email stages](flow/stages/email/index.md) to send verification/recovery emails.
|
It is also recommended to configure global email credentials. These are used by authentik to notify you about alerts, configuration issues. They can also be used by [Email stages](../flow/stages/email/) to send verification/recovery emails.
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: OAuth2 Provider
|
||||||
|
|
||||||
This provider supports both generic OAuth2 as well as OpenID Connect
|
This provider supports both generic OAuth2 as well as OpenID Connect
|
||||||
|
|
||||||
Scopes can be configured using Scope Mappings, a type of [Property Mappings](../property-mappings/index.md#scope-mapping).
|
Scopes can be configured using Scope Mappings, a type of [Property Mappings](../property-mappings/#scope-mapping).
|
||||||
|
|
||||||
| Endpoint | URL |
|
| Endpoint | URL |
|
||||||
| -------------------- | -------------------------------------------------------------------- |
|
| -------------------- | -------------------------------------------------------------------- |
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: SAML Provider
|
title: SAML Provider
|
||||||
---
|
---
|
||||||
|
|
||||||
This provider allows you to integrate enterprise software using the SAML2 Protocol. It supports signed requests and uses [Property Mappings](../property-mappings/index.md#saml-property-mapping) to determine which fields are exposed and what values they return. This makes it possible to expose vendor-specific fields.
|
This provider allows you to integrate enterprise software using the SAML2 Protocol. It supports signed requests and uses [Property Mappings](../property-mappings/#saml-property-mapping) to determine which fields are exposed and what values they return. This makes it possible to expose vendor-specific fields.
|
||||||
Default fields are exposed through auto-generated Property Mappings, which are prefixed with "authentik default".
|
Default fields are exposed through auto-generated Property Mappings, which are prefixed with "authentik default".
|
||||||
|
|
||||||
| Endpoint | URL |
|
| Endpoint | URL |
|
||||||
|
|
|
@ -5,7 +5,7 @@ slug: "0.11"
|
||||||
|
|
||||||
This update brings these headline features:
|
This update brings these headline features:
|
||||||
|
|
||||||
- Add Backup and Restore, currently only externally schedulable, documented [here](../maintenance/backups/index.md)
|
- Add Backup and Restore, currently only externally schedulable, documented [here](../maintenance/backups/)
|
||||||
- New Admin Dashboard with more metrics and Charts
|
- New Admin Dashboard with more metrics and Charts
|
||||||
|
|
||||||
Shows successful and failed logins from the last 24 hours, as well as the most used applications
|
Shows successful and failed logins from the last 24 hours, as well as the most used applications
|
||||||
|
|
|
@ -8,7 +8,7 @@ slug: "2021.1"
|
||||||
- New versioning schema (year.month.release)
|
- New versioning schema (year.month.release)
|
||||||
- Add global email settings
|
- Add global email settings
|
||||||
|
|
||||||
In previous versions, you had to configure email connection details per [Email Stage](../flow/stages/email/index.md). Now, you can (and should) configure global settings.
|
In previous versions, you had to configure email connection details per [Email Stage](../flow/stages/email/). Now, you can (and should) configure global settings.
|
||||||
|
|
||||||
This is documented under the [docker-compose](../installation/docker-compose.md) and [Kubernetes](../installation/kubernetes.md) sections.
|
This is documented under the [docker-compose](../installation/docker-compose.md) and [Kubernetes](../installation/kubernetes.md) sections.
|
||||||
|
|
||||||
|
|
|
@ -116,11 +116,11 @@ Due to the switch to managed objects, some default property mappings are changin
|
||||||
The change affects the "SAML Name" property, which has been changed from an oid to a Schema URI to aid readability.
|
The change affects the "SAML Name" property, which has been changed from an oid to a Schema URI to aid readability.
|
||||||
|
|
||||||
The integrations affected are:
|
The integrations affected are:
|
||||||
- [Ansible Tower/AWX](/integrations/services/awx-tower/index)
|
- [Ansible Tower/AWX](/integrations/services/awx-tower/)
|
||||||
- [GitLab](/integrations/services/gitlab/index)
|
- [GitLab](/integrations/services/gitlab/)
|
||||||
- [NextCloud](/integrations/services/nextcloud/index)
|
- [NextCloud](/integrations/services/nextcloud/)
|
||||||
- [Rancher](/integrations/services/rancher/index)
|
- [Rancher](/integrations/services/rancher/)
|
||||||
- [Sentry](/integrations/services/sentry/index)
|
- [Sentry](/integrations/services/sentry/)
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
|
|
|
@ -50,4 +50,4 @@ In Tautulli, navigate to Settings and enable the "Show Advanced" option. Navigat
|
||||||
|
|
||||||
Save the settings, and restart Tautulli if prompted.
|
Save the settings, and restart Tautulli if prompted.
|
||||||
|
|
||||||
Afterwards, you need to deploy an Outpost in front of Tautulli, as descried [here](../sonarr/index.md)
|
Afterwards, you need to deploy an Outpost in front of Tautulli, as descried [here](../sonarr/)
|
||||||
|
|
|
@ -80,7 +80,7 @@ function Home() {
|
||||||
"button button--outline button--secondary button--lg",
|
"button button--outline button--secondary button--lg",
|
||||||
styles.getStarted
|
styles.getStarted
|
||||||
)}
|
)}
|
||||||
to={useBaseUrl("docs/installation/index")}
|
to={useBaseUrl("docs/installation/")}
|
||||||
>
|
>
|
||||||
Get Started
|
Get Started
|
||||||
</Link>
|
</Link>
|
||||||
|
|
Reference in New Issue