diff --git a/website/docs/expressions/index.md b/website/docs/expressions/index.md
index 04876de6c..ca305aab9 100644
--- a/website/docs/expressions/index.md
+++ b/website/docs/expressions/index.md
@@ -12,8 +12,8 @@ These functions/objects are available wherever expressions are used. For more sp
## Global objects
-- `ak_logger`: structlog BoundLogger. ([ref](https://www.structlog.org/en/stable/api.html#structlog.BoundLogger))
-- `requests`: requests Session object. ([ref](https://requests.readthedocs.io/en/master/user/advanced/))
+- `ak_logger`: structlog BoundLogger. ([ref](https://www.structlog.org/en/stable/api.html#structlog.BoundLogger))
+- `requests`: requests Session object. ([ref](https://requests.readthedocs.io/en/master/user/advanced/))
## Generally available functions
diff --git a/website/docs/expressions/reference/user-object.md b/website/docs/expressions/reference/user-object.md
index 6563f429e..7f2ab93a0 100644
--- a/website/docs/expressions/reference/user-object.md
+++ b/website/docs/expressions/reference/user-object.md
@@ -4,16 +4,16 @@ title: User Object
The User object has the following attributes:
-- `username`: User's username.
-- `email` User's email.
-- `name` User's display name.
-- `is_staff` Boolean field if user is staff.
-- `is_active` Boolean field if user is active.
-- `date_joined` Date user joined/was created.
-- `password_change_date` Date password was last changed.
-- `attributes` Dynamic attributes.
-- `group_attributes` Merged attributes of all groups the user is member of and the user's own attributes.
-- `ak_groups` This is a queryset of all the user's groups.
+- `username`: User's username.
+- `email` User's email.
+- `name` User's display name.
+- `is_staff` Boolean field if user is staff.
+- `is_active` Boolean field if user is active.
+- `date_joined` Date user joined/was created.
+- `password_change_date` Date password was last changed.
+- `attributes` Dynamic attributes.
+- `group_attributes` Merged attributes of all groups the user is member of and the user's own attributes.
+- `ak_groups` This is a queryset of all the user's groups.
You can do additional filtering like `user.ak_groups.filter(name__startswith='test')`, see [here](https://docs.djangoproject.com/en/3.1/ref/models/querysets/#id4)
diff --git a/website/docs/flow/stages/authenticator_static/index.md b/website/docs/flow/stages/authenticator_static/index.md
index ee43781d6..03d8fd8ef 100644
--- a/website/docs/flow/stages/authenticator_static/index.md
+++ b/website/docs/flow/stages/authenticator_static/index.md
@@ -1,5 +1,5 @@
---
-title: Static Authenticator stage
+title: Static Authentication Setup stage
---
This stage configures static OTP Tokens, which can be used as a backup method to time-based OTP tokens.
diff --git a/website/docs/flow/stages/authenticator_totp/index.md b/website/docs/flow/stages/authenticator_totp/index.md
index 6d4961144..03410e013 100644
--- a/website/docs/flow/stages/authenticator_totp/index.md
+++ b/website/docs/flow/stages/authenticator_totp/index.md
@@ -1,7 +1,7 @@
---
-title: TOTP stage
+title: TOTP Authentication Setup stage
---
This stage configures a time-based OTP Device, such as Google Authenticator or Authy.
-You can configure how many digest should be used for the OTP Token.
+You can configure how many digits should be used for the OTP Token.
diff --git a/website/docs/flow/stages/authenticator_validate/index.md b/website/docs/flow/stages/authenticator_validate/index.md
index 9dffa3dc1..05b714b9c 100644
--- a/website/docs/flow/stages/authenticator_validate/index.md
+++ b/website/docs/flow/stages/authenticator_validate/index.md
@@ -2,7 +2,16 @@
title: Authenticator Validation Stage
---
-This stage validates an already configured OTP 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:
- [TOTP authenticator stage](../authenticator_totp/index.md)
- [Static authenticator stage](../authenticator_static/index.md).
+- [WebAuth authenticator stage](../authenticator_webauthn/index.md).
+
+You can select which type of device classes are allowed.
+
+Using the `Not configured action`, you can choose what happens when a user does not have any matching devices.
+
+- Skip: Validation is skipped and the flow continues
+- Deny: Access is denied, the flow execution ends
+- Configure: This option requires a *Configuration stage* to be set. The validation stage will be marked as successful, and the configuration stage will be injected into the flow.
diff --git a/website/docs/flow/stages/authenticator_webauthn/index.md b/website/docs/flow/stages/authenticator_webauthn/index.md
new file mode 100644
index 000000000..15369cfbe
--- /dev/null
+++ b/website/docs/flow/stages/authenticator_webauthn/index.md
@@ -0,0 +1,7 @@
+---
+title: WebAuthn Authentication Setup stage
+---
+
+This stage configures a WebAuthn-based Authenticator. This can either be a browser, biometrics or a Security stick like a YubiKey.
+
+There are no stage-specific settings.
diff --git a/website/docs/flow/stages/captcha/captcha-admin.png b/website/docs/flow/stages/captcha/captcha-admin.png
index f33a52972..41cee855f 100644
Binary files a/website/docs/flow/stages/captcha/captcha-admin.png and b/website/docs/flow/stages/captcha/captcha-admin.png differ
diff --git a/website/docs/flow/stages/deny.md b/website/docs/flow/stages/deny.md
new file mode 100644
index 000000000..f5877336a
--- /dev/null
+++ b/website/docs/flow/stages/deny.md
@@ -0,0 +1,10 @@
+---
+title: Deny stage
+---
+
+This stage stops the execution of a flow. This can be used to conditionally deny users access to a flow,
+even if they are not signed in (and permissions can't be checked via groups).
+
+:::caution
+To effectively use this stage, make sure to **disable** *Evaluate on plan* on the Stage binding.
+:::
diff --git a/website/docs/flow/stages/identification/index.md b/website/docs/flow/stages/identification/index.md
index facbb6c65..3ce5ec69e 100644
--- a/website/docs/flow/stages/identification/index.md
+++ b/website/docs/flow/stages/identification/index.md
@@ -11,8 +11,8 @@ This stage provides a ready-to-go form for users to identify themselves.
Select which fields the user can use to identify themselves. Multiple fields can be specified and separated with a comma.
Valid choices:
-- email
-- username
+- email
+- username
### Template
diff --git a/website/docs/integrations/services/apache-guacamole/index.mdx b/website/docs/integrations/services/apache-guacamole/index.mdx
new file mode 100644
index 000000000..d3bc40130
--- /dev/null
+++ b/website/docs/integrations/services/apache-guacamole/index.mdx
@@ -0,0 +1,62 @@
+---
+title: Apache Guacamole™
+---
+
+## What is Apache Guacamole™
+
+From https://guacamole.apache.org/
+
+:::note
+Apache Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH.
+:::
+
+## Preparation
+
+The following placeholders will be used:
+
+- `guacamole.company` is the FQDN of the Guacamole install.
+- `authentik.company` is the FQDN of the authentik install.
+
+Create an OAuth2/OpenID provider with the following parameters:
+
+- Client Type: `Confidential`
+- JWT Algorithm: `RS256`
+- Redirect URIs: `https://guacamole.company/` (depending on your Tomcat setup, you might have to add `/guacamole/` if the application runs in a subfolder)
+- Scopes: OpenID, Email and Profile
+
+Note the Client ID value. Create an application, using the provider you've created above.
+
+## Guacamole
+
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+
+
+ The docker containers are configured via environment variables. The following variables are required:
+
+```yaml
+OPENID_AUTHORIZATION_ENDPOINT: https://authentik.company/application/o/authorize/
+OPENID_CLIENT_ID: # client ID from above
+OPENID_ISSUER: https://authentik.company/application/o/apache-guacamole/
+OPENID_JWKS_ENDPOINT: https://authentik.company/application/o/apache-guacamole/jwks/
+OPENID_REDIRECT_URI: https://guacamole.company/ # This must match the redirect URI above
+```
+
+
+ Standalone Guacamole is configured using the `guacamole.properties` file. Add the following settings:
+
+```
+openid-authorization-endpoint=https://authentik.company/application/o/authorize/
+openid-client-id=# client ID from above
+openid-issuer=https://authentik.company/application/o/apache-guacamole/
+openid-jwks-endpoint=https://authentik.company/application/o/apache-guacamole/jwks/
+openid-redirect-uri=https://guacamole.company/ # This must match the redirect URI above
+```
+
+
diff --git a/website/docs/integrations/services/aws/index.md b/website/docs/integrations/services/aws/index.md
index 95ae45bfc..4d2d5060d 100644
--- a/website/docs/integrations/services/aws/index.md
+++ b/website/docs/integrations/services/aws/index.md
@@ -12,14 +12,14 @@ Amazon Web Services (AWS) is the world’s most comprehensive and broadly adopte
The following placeholders will be used:
-- `authentik.company` is the FQDN of the authentik install.
+- `authentik.company` is the FQDN of the authentik install.
Create an application in authentik and note the slug, as this will be used later. Create a SAML provider with the following parameters:
-- ACS URL: `https://signin.aws.amazon.com/saml`
-- Audience: `urn:amazon:webservices`
-- Issuer: `authentik`
-- Binding: `Post`
+- ACS URL: `https://signin.aws.amazon.com/saml`
+- Audience: `urn:amazon:webservices`
+- Issuer: `authentik`
+- Binding: `Post`
You can of course use a custom signing certificate, and adjust durations.
diff --git a/website/docs/integrations/services/awx-tower/index.md b/website/docs/integrations/services/awx-tower/index.md
index c566c7b6e..7176db458 100644
--- a/website/docs/integrations/services/awx-tower/index.md
+++ b/website/docs/integrations/services/awx-tower/index.md
@@ -20,15 +20,15 @@ AWX is the open-source version of Tower. The term "AWX" will be used interchange
The following placeholders will be used:
-- `awx.company` is the FQDN of the AWX/Tower install.
-- `authentik.company` is the FQDN of the authentik install.
+- `awx.company` is the FQDN of the AWX/Tower install.
+- `authentik.company` is the FQDN of the authentik install.
Create an application in authentik and note the slug, as this will be used later. Create a SAML provider with the following parameters:
-- ACS URL: `https://awx.company/sso/complete/saml/`
-- Audience: `awx`
-- Service Provider Binding: Post
-- Issuer: `https://awx.company/sso/metadata/saml/`
+- ACS URL: `https://awx.company/sso/complete/saml/`
+- Audience: `awx`
+- Service Provider Binding: Post
+- Issuer: `https://awx.company/sso/metadata/saml/`
You can of course use a custom signing certificate, and adjust durations.
diff --git a/website/docs/integrations/services/gitlab/index.md b/website/docs/integrations/services/gitlab/index.md
index 097769ef4..4ff1177f4 100644
--- a/website/docs/integrations/services/gitlab/index.md
+++ b/website/docs/integrations/services/gitlab/index.md
@@ -14,15 +14,15 @@ GitLab is a complete DevOps platform, delivered as a single application. This ma
The following placeholders will be used:
-- `gitlab.company` is the FQDN of the GitLab Install
-- `authentik.company` is the FQDN of the authentik Install
+- `gitlab.company` is the FQDN of the GitLab Install
+- `authentik.company` is the FQDN of the authentik Install
Create an application in authentik and note the slug, as this will be used later. Create a SAML provider with the following parameters:
-- ACS URL: `https://gitlab.company/users/auth/saml/callback`
-- Audience: `https://gitlab.company`
-- Issuer: `https://gitlab.company`
-- Binding: `Post`
+- ACS URL: `https://gitlab.company/users/auth/saml/callback`
+- Audience: `https://gitlab.company`
+- Issuer: `https://gitlab.company`
+- Binding: `Post`
You can of course use a custom signing certificate, and adjust durations. To get the value for `idp_cert_fingerprint`, you can use a tool like [this](https://www.samltool.com/fingerprint.php).
diff --git a/website/docs/integrations/services/grafana/index.md b/website/docs/integrations/services/grafana/index.mdx
similarity index 78%
rename from website/docs/integrations/services/grafana/index.md
rename to website/docs/integrations/services/grafana/index.mdx
index 03ca9253d..eae0227cb 100644
--- a/website/docs/integrations/services/grafana/index.md
+++ b/website/docs/integrations/services/grafana/index.mdx
@@ -14,21 +14,31 @@ Grafana is a multi-platform open source analytics and interactive visualization
The following placeholders will be used:
-- `grafana.company` is the FQDN of the Grafana install.
-- `authentik.company` is the FQDN of the authentik install.
+- `grafana.company` is the FQDN of the Grafana install.
+- `authentik.company` is the FQDN of the authentik install.
Create an application in authentik. Create an OAuth2/OpenID provider with the following parameters:
-- Client Type: `Confidential`
-- JWT Algorithm: `RS256`
-- Scopes: OpenID, Email and Profile
-- RSA Key: Select any available key
-- Redirect URIs: `https://grafana.company/login/generic_oauth`
+- Client Type: `Confidential`
+- JWT Algorithm: `RS256`
+- Scopes: OpenID, Email and Profile
+- RSA Key: Select any available key
+- Redirect URIs: `https://grafana.company/login/generic_oauth`
Note the Client ID and Client Secret values. Create an application, using the provider you've created above. Note the slug of the application you've created.
## Grafana
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+
+
If your Grafana is running in docker, set the following environment variables:
```yaml
@@ -45,7 +55,8 @@ environment:
# Optionally enable auto-login
GF_AUTH_OAUTH_AUTO_LOGIN: "true"
```
-
+
+
If you are using a config-file instead, you have to set these options:
```ini
@@ -64,3 +75,5 @@ auth_url = https://authentik.company/application/o/authorize/
token_url = https://authentik.company/application/o/token/
api_url = https://authentik.company/application/o/userinfo/
```
+
+
diff --git a/website/docs/integrations/services/harbor/harbor.png b/website/docs/integrations/services/harbor/harbor.png
index df8434f48..fd36b209b 100644
Binary files a/website/docs/integrations/services/harbor/harbor.png and b/website/docs/integrations/services/harbor/harbor.png differ
diff --git a/website/docs/integrations/services/harbor/index.md b/website/docs/integrations/services/harbor/index.md
index f1a5c40af..5bd445863 100644
--- a/website/docs/integrations/services/harbor/index.md
+++ b/website/docs/integrations/services/harbor/index.md
@@ -14,15 +14,15 @@ Harbor is an open source container image registry that secures images with role-
The following placeholders will be used:
-- `harbor.company` is the FQDN of the Harbor install.
-- `authentik.company` is the FQDN of the authentik install.
+- `harbor.company` is the FQDN of the Harbor install.
+- `authentik.company` is the FQDN of the authentik install.
Create an OAuth2/OpenID provider with the following parameters:
-- Client Type: `Confidential`
-- JWT Algorithm: `RS256`
-- Redirect URIs: `https://harbor.company/c/oidc/callback`
-- Scopes: OpenID, Email and Profile
+- Client Type: `Confidential`
+- JWT Algorithm: `RS256`
+- Redirect URIs: `https://harbor.company/c/oidc/callback`
+- Scopes: OpenID, Email and Profile
Note the Client ID and Client Secret values. Create an application, using the provider you've created above.
diff --git a/website/docs/integrations/services/home-assistant/index.md b/website/docs/integrations/services/home-assistant/index.md
index 4546e0e21..1275e5b71 100644
--- a/website/docs/integrations/services/home-assistant/index.md
+++ b/website/docs/integrations/services/home-assistant/index.md
@@ -14,8 +14,8 @@ Open source home automation that puts local control and privacy first. Powered b
The following placeholders will be used:
-- `hass.company` is the FQDN of the Home-Assistant install.
-- `authentik.company` is the FQDN of the authentik install.
+- `hass.company` is the FQDN of the Home-Assistant install.
+- `authentik.company` is the FQDN of the authentik install.
:::note
This setup uses https://github.com/BeryJu/hass-auth-header and the authentik proxy for authentication. When this [PR](https://github.com/home-assistant/core/pull/32926) is merged, this will no longer be necessary.
@@ -42,13 +42,13 @@ additionalHeaders:
Create a Proxy Provider with the following values
-- Internal host
+- Internal host
If Home-Assistant is running in docker, and you're deploying the authentik proxy on the same host, set the value to `http://homeassistant:8123`, where Home-Assistant is the name of your container.
If Home-Assistant is running on a different server than where you are deploying the authentik proxy, set the value to `http://hass.company:8123`.
-- External host
+- External host
Set this to the external URL you will be accessing Home-Assistant from.
diff --git a/website/docs/integrations/services/nextcloud/index.md b/website/docs/integrations/services/nextcloud/index.md
index 08e2ec4ce..621912f1d 100644
--- a/website/docs/integrations/services/nextcloud/index.md
+++ b/website/docs/integrations/services/nextcloud/index.md
@@ -22,17 +22,17 @@ In case something goes wrong with the configuration, you can use the URL `http:/
The following placeholders will be used:
-- `nextcloud.company` is the FQDN of the NextCloud install.
-- `authentik.company` is the FQDN of the authentik install.
+- `nextcloud.company` is the FQDN of the NextCloud install.
+- `authentik.company` is the FQDN of the authentik install.
Create an application in authentik and note the slug, as this will be used later. Create a SAML provider with the following parameters:
-- ACS URL: `https://nextcloud.company/apps/user_saml/saml/acs`
-- Issuer: `https://authentik.company`
-- Service Provider Binding: `Post`
-- Audience: `https://nextcloud.company/apps/user_saml/saml/metadata`
-- Signing Keypair: Select any certificate you have.
-- Property mappings: Select all Managed mappings.
+- ACS URL: `https://nextcloud.company/apps/user_saml/saml/acs`
+- Issuer: `https://authentik.company`
+- Service Provider Binding: `Post`
+- Audience: `https://nextcloud.company/apps/user_saml/saml/metadata`
+- Signing Keypair: Select any certificate you have.
+- Property mappings: Select all Managed mappings.
You can of course use a custom signing certificate, and adjust durations.
diff --git a/website/docs/integrations/services/sentry/index.md b/website/docs/integrations/services/sentry/index.md
index ce318683b..833742917 100644
--- a/website/docs/integrations/services/sentry/index.md
+++ b/website/docs/integrations/services/sentry/index.md
@@ -18,16 +18,16 @@ better software faster with Sentry. Won’t you join them?
The following placeholders will be used:
-- `sentry.company` is the FQDN of the Sentry install.
-- `authentik.company` is the FQDN of the authentik install.
+- `sentry.company` is the FQDN of the Sentry install.
+- `authentik.company` is the FQDN of the authentik install.
Create an application in authentik. Create a SAML Provider with the following values
-- ACS URL: `https://sentry.company/saml/acs//`
-- Audience: `https://sentry.company/saml/metadata//`
-- Issuer: `authentik`
-- Service Provider Binding: `Post`
-- Property Mapping: Select all Managed Mappings
+- ACS URL: `https://sentry.company/saml/acs//`
+- Audience: `https://sentry.company/saml/metadata//`
+- Issuer: `authentik`
+- Service Provider Binding: `Post`
+- Property Mapping: Select all Managed Mappings
## Sentry
diff --git a/website/docs/integrations/services/sonarr/index.md b/website/docs/integrations/services/sonarr/index.md
index d3144c95e..26dbb8911 100644
--- a/website/docs/integrations/services/sonarr/index.md
+++ b/website/docs/integrations/services/sonarr/index.md
@@ -20,18 +20,18 @@ Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS fee
The following placeholders will be used:
-- `sonarr.company` is the FQDN of the Sonarr install.
-- `authentik.company` is the FQDN of the authentik install.
+- `sonarr.company` is the FQDN of the Sonarr install.
+- `authentik.company` is the FQDN of the authentik install.
Create a Proxy Provider with the following values
-- Internal host
+- Internal host
If Sonarr is running in docker, and you're deploying the authentik proxy on the same host, set the value to `http://sonarr:8989`, where sonarr is the name of your container.
If Sonarr is running on a different server than where you are deploying the authentik proxy, set the value to `http://sonarr.company:8989`.
-- External host
+- External host
Set this to the external URL you will be accessing Sonarr from.
diff --git a/website/docs/integrations/services/tautulli/index.md b/website/docs/integrations/services/tautulli/index.md
index 32d472d46..ec26ab525 100644
--- a/website/docs/integrations/services/tautulli/index.md
+++ b/website/docs/integrations/services/tautulli/index.md
@@ -14,8 +14,8 @@ Tautulli is a 3rd party application that you can run alongside your Plex Media S
The following placeholders will be used:
-- `tautulli.company` is the FQDN of the Tautulli install.
-- `authentik.company` is the FQDN of the authentik install.
+- `tautulli.company` is the FQDN of the Tautulli install.
+- `authentik.company` is the FQDN of the authentik install.
## authentik Setup
@@ -30,13 +30,13 @@ Add all Tautulli users to the Group. You should also create a Group Membership P
Create an application in authentik. Create a Proxy provider with the following parameters:
-- Internal host
+- Internal host
If Tautulli is running in docker, and you're deploying the authentik proxy on the same host, set the value to `http://tautulli:3579`, where tautulli is the name of your container.
If Tautulli is running on a different server to where you are deploying the authentik proxy, set the value to `http://tautulli.company:3579`.
-- External host
+- External host
Set this to the external URL you will be accessing Tautulli from.
diff --git a/website/docs/integrations/services/ubuntu-landscape/index.md b/website/docs/integrations/services/ubuntu-landscape/index.md
index 42f789356..a05c4ca15 100644
--- a/website/docs/integrations/services/ubuntu-landscape/index.md
+++ b/website/docs/integrations/services/ubuntu-landscape/index.md
@@ -18,8 +18,8 @@ This requires authentik 0.10.3 or newer.
The following placeholders will be used:
-- `landscape.company` is the FQDN of the Landscape server.
-- `authentik.company` is the FQDN of the authentik install.
+- `landscape.company` is the FQDN of the Landscape server.
+- `authentik.company` is the FQDN of the authentik install.
Landscape uses the OpenID-Connect Protocol for single-sign on.
diff --git a/website/docs/integrations/services/veeam-enterprise-manager/index.md b/website/docs/integrations/services/veeam-enterprise-manager/index.md
index f709dc03b..e4333a565 100644
--- a/website/docs/integrations/services/veeam-enterprise-manager/index.md
+++ b/website/docs/integrations/services/veeam-enterprise-manager/index.md
@@ -14,8 +14,8 @@ Veeam Backup Enterprise Manager (Enterprise Manager) is a management and reporti
The following placeholders will be used:
-- `veeam.company` is the FQDN of the Veeam Enterprise Manager install.
-- `authentik.company` is the FQDN of the authentik install.
+- `veeam.company` is the FQDN of the Veeam Enterprise Manager install.
+- `authentik.company` is the FQDN of the authentik install.
You will need an existing group or multiple in authentik to assign roles in Veeam Enterprise Manager to.
diff --git a/website/docs/integrations/services/vmware-vcenter/index.md b/website/docs/integrations/services/vmware-vcenter/index.md
index 9774325e3..2597f5ddc 100644
--- a/website/docs/integrations/services/vmware-vcenter/index.md
+++ b/website/docs/integrations/services/vmware-vcenter/index.md
@@ -26,8 +26,8 @@ It seems that the vCenter still needs to be joined to the Active Directory Domai
The following placeholders will be used:
-- `vcenter.company` is the FQDN of the vCenter server.
-- `authentik.company` is the FQDN of the authentik install.
+- `vcenter.company` is the FQDN of the vCenter server.
+- `authentik.company` is the FQDN of the authentik install.
Since vCenter only allows OpenID-Connect in combination with Active Directory, it is recommended to have authentik sync with the same Active Directory.
@@ -53,11 +53,11 @@ Under _Sources_, click _Edit_ and ensure that "authentik default Active Director
Under _Providers_, create an OAuth2/OpenID provider with these settings:
-- Client Type: Confidential
-- JWT Algorithm: RS256
-- Redirect URI: `https://vcenter.company/ui/login/oauth2/authcode`
-- Sub Mode: If your Email address Schema matches your UPN, select "Based on the User's Email...", otherwise select "Based on the User's UPN...".
-- Scopes: Select the Scope Mapping you've created in Step 1
+- Client Type: Confidential
+- JWT Algorithm: RS256
+- Redirect URI: `https://vcenter.company/ui/login/oauth2/authcode`
+- Sub Mode: If your Email address Schema matches your UPN, select "Based on the User's Email...", otherwise select "Based on the User's UPN...".
+- Scopes: Select the Scope Mapping you've created in Step 1
![](./authentik_setup.png)
diff --git a/website/docs/integrations/services/wiki-js/authentik_application.png b/website/docs/integrations/services/wiki-js/authentik_application.png
new file mode 100644
index 000000000..3f2a843a7
Binary files /dev/null and b/website/docs/integrations/services/wiki-js/authentik_application.png differ
diff --git a/website/docs/integrations/services/wiki-js/authentik_provider.png b/website/docs/integrations/services/wiki-js/authentik_provider.png
new file mode 100644
index 000000000..d33301f9a
Binary files /dev/null and b/website/docs/integrations/services/wiki-js/authentik_provider.png differ
diff --git a/website/docs/integrations/services/wiki-js/index.md b/website/docs/integrations/services/wiki-js/index.md
new file mode 100644
index 000000000..bff6cd460
--- /dev/null
+++ b/website/docs/integrations/services/wiki-js/index.md
@@ -0,0 +1,72 @@
+---
+title: Wiki.js
+---
+
+## What is Wiki.js
+
+From https://en.wikipedia.org/wiki/Wiki.js
+
+:::note
+Wiki.js is a wiki engine running on Node.js and written in JavaScript. It is free software released under the Affero GNU General Public License. It is available as a self-hosted solution or using "single-click" install on the DigitalOcean and AWS marketplace.
+:::
+
+:::note
+This is based on authentik 2021.3 and Wiki.js 2.5. Instructions may differ between versions.
+:::
+
+## Preparation
+
+The following placeholders will be used:
+
+- `wiki.company` is the FQDN of Wiki.js.
+- `authentik.company` is the FQDN of authentik.
+
+### Step 1
+
+In Wiki.js, navigate to the _Authentication_ section in the _Administration_ interface.
+
+Add a _Generic OpenID Connect / OAuth2_ strategy and note the _Callback URL / Redirect URI_ in the _Configuration Reference_ section at the bottom.
+
+### Step 2
+
+In authentik, under _Providers_, create an _OAuth2/OpenID Provider_ with these settings:
+
+- Client Type: Confidential
+- JWT Algorithm: RS256
+- Redirect URI: The _Callback URL / Redirect URI_ you noted from the previous step.
+- Scopes: Default OAUth mappings for: OpenID, email, profile.
+- RSA Key: Choose a certificate.
+- Sub Mode: Based on username.
+
+Note the _client ID_ and _client secret_, then save the provider. If you need to retrieve these values, you can do so by editing the provider.
+
+![](./authentik_provider.png)
+
+### Step 3
+
+In Wiki.js, configure the authentication strategy with these settings:
+
+- Client ID: Client ID from the authentik provider.
+- Client Secret: Client Secret from the authentik provider.
+- Authorization Endpoint URL: https://authentik.company/application/o/authorize/
+- Token Endpoint URL: https://authentik.company/application/o/token/
+- User Info Endpont URL: https://authentik.company/application/o/userinfo/
+- Issuer: https://authentik.company/application/o/wikijs/
+- Logout URL: https://authentik.company/application/o/wikijs/end-session/
+- Allow self-registration: Enabled
+- Assign to group: The group to which new users logging in from authentik should be assigned.
+
+![](./wiki-js_strategy.png)
+
+:::note
+You do not have to enable "Allow self-registration" and select a group to which new users should be assigned, but if you don't you will have to manually provision users in Wiki.js and ensure that their usernames match the username they have in authentik.
+:::
+
+### Step 5
+
+In authentik, create an application which uses this provider. Optionally apply access restrictions to the application using policy bindings.
+
+Set the Launch URL to the _Callback URL / Redirect URI_ without the `/callback` at the end, as shown below. This will skip Wiki.js' login prompt and log you in directly.
+
+![](./authentik_application.png)
+
diff --git a/website/docs/integrations/services/wiki-js/wiki-js_strategy.png b/website/docs/integrations/services/wiki-js/wiki-js_strategy.png
new file mode 100644
index 000000000..6d8e7dd29
Binary files /dev/null and b/website/docs/integrations/services/wiki-js/wiki-js_strategy.png differ
diff --git a/website/docs/integrations/sources/active-directory/index.md b/website/docs/integrations/sources/active-directory/index.md
index 4d2cbe6b0..78fd8e3db 100644
--- a/website/docs/integrations/sources/active-directory/index.md
+++ b/website/docs/integrations/sources/active-directory/index.md
@@ -6,8 +6,8 @@ title: Active Directory
The following placeholders will be used:
-- `ad.company` is the Name of the Active Directory domain.
-- `authentik.company` is the FQDN of the authentik install.
+- `ad.company` is the Name of the Active Directory domain.
+- `authentik.company` is the FQDN of the authentik install.
## Active Directory Setup
@@ -33,25 +33,25 @@ In authentik, create a new LDAP Source in Administration -> Sources.
Use these settings:
-- Server URI: `ldap://ad.company`
+- Server URI: `ldap://ad.company`
For authentik to be able to write passwords back to Active Directory, make sure to use `ldaps://`
-- Bind CN: `@ad.company`
-- Bind Password: The password you've given the user above
-- Base DN: The base DN which you want authentik to sync
-- Property mappings: Control/Command-select all Mappings which start with "authentik default LDAP" and "authentik default Active Directory"
-- Group property mappings: Select "authentik default LDAP Mapping: Name"
+- Bind CN: `@ad.company`
+- Bind Password: The password you've given the user above
+- Base DN: The base DN which you want authentik to sync
+- Property mappings: Control/Command-select all Mappings which start with "authentik default LDAP" and "authentik default Active Directory"
+- Group property mappings: Select "authentik default LDAP Mapping: Name"
The other settings might need to be adjusted based on the setup of your domain.
-- Addition User/Group DN: Additional DN which is _prepended_ to your Base DN for user synchronization.
-- Addition Group DN: Additional DN which is _prepended_ to your Base DN for group synchronization.
-- User object filter: Which objects should be considered users.
-- Group object filter: Which objects should be considered groups.
-- Group membership field: Which user field saves the group membership
-- Object uniqueness field: A user field which contains a unique Identifier
-- Sync parent group: If enabled, all synchronized groups will be given this group as a parent.
+- Addition User/Group DN: Additional DN which is _prepended_ to your Base DN for user synchronization.
+- Addition Group DN: Additional DN which is _prepended_ to your Base DN for group synchronization.
+- User object filter: Which objects should be considered users.
+- Group object filter: Which objects should be considered groups.
+- Group membership field: Which user field saves the group membership
+- Object uniqueness field: A user field which contains a unique Identifier
+- Sync parent group: If enabled, all synchronized groups will be given this group as a parent.
After you save the source, a synchronization will start in the background. When its done, you cen see the summary on the System Tasks page.
diff --git a/website/docs/outposts/outposts.md b/website/docs/outposts/outposts.md
index ca27c5a1f..a00fe1980 100644
--- a/website/docs/outposts/outposts.md
+++ b/website/docs/outposts/outposts.md
@@ -10,12 +10,12 @@ Upon creation, a service account and a token is generated. The service account o
authentik can manage the deployment, updating and general lifecycle of an Outpost. To communicate with the underlying platforms on which the outpost is deployed, authentik has "Service Connections".
-- If you've deployed authentik on docker-compose, authentik automatically create a Service Connection for the local docker socket.
-- If you've deployed authentik on Kubernetes, with `kubernetesIntegration` set to true (default), authentik automatically creates a Service Connection for the local Kubernetes Cluster.
+- If you've deployed authentik on docker-compose, authentik automatically create a Service Connection for the local docker socket.
+- If you've deployed authentik on Kubernetes, with `kubernetesIntegration` set to true (default), authentik automatically creates a Service Connection for the local Kubernetes Cluster.
To deploy an outpost with these service connections, simply selected them during the creation of an Outpost. A background task is started, which creates the container/deployment. You can see that Status on the System Tasks page.
To deploy an outpost manually, see:
-- [Kubernetes](./manual-deploy-kubernetes.md)
-- [docker-compose](./manual-deploy-docker-compose.md)
+- [Kubernetes](./manual-deploy-kubernetes.md)
+- [docker-compose](./manual-deploy-docker-compose.md)
diff --git a/website/docs/policies/expression.md b/website/docs/policies/expression.md
index cd02648f4..b2890ca44 100644
--- a/website/docs/policies/expression.md
+++ b/website/docs/policies/expression.md
@@ -23,14 +23,14 @@ return False
### Context variables
-- `request`: A PolicyRequest object, which has the following properties:
- - `request.user`: The current user, against which the policy is applied. ([ref](../expressions/reference/user-object.md))
- - `request.http_request`: The Django HTTP Request. ([ref](https://docs.djangoproject.com/en/3.0/ref/request-response/#httprequest-objects))
- - `request.obj`: A Django Model instance. This is only set if the policy is ran against an object.
- - `request.context`: A dictionary with dynamic data. This depends on the origin of the execution.
-- `geoip`: `geoip2.models.City` object, which is added when GeoIP is enabled.
-- `ak_is_sso_flow`: Boolean which is true if request was initiated by authenticating through an external provider.
-- `ak_client_ip`: Client's IP Address or 255.255.255.255 if no IP Address could be extracted. Can be [compared](../expressions/index.md#comparing-ip-addresses), for example
+- `request`: A PolicyRequest object, which has the following properties:
+ - `request.user`: The current user, against which the policy is applied. ([ref](../expressions/reference/user-object.md))
+ - `request.http_request`: The Django HTTP Request. ([ref](https://docs.djangoproject.com/en/3.0/ref/request-response/#httprequest-objects))
+ - `request.obj`: A Django Model instance. This is only set if the policy is ran against an object.
+ - `request.context`: A dictionary with dynamic data. This depends on the origin of the execution.
+- `geoip`: `geoip2.models.City` object, which is added when GeoIP is enabled.
+- `ak_is_sso_flow`: Boolean which is true if request was initiated by authenticating through an external provider.
+- `ak_client_ip`: Client's IP Address or 255.255.255.255 if no IP Address could be extracted. Can be [compared](../expressions/index.md#comparing-ip-addresses), for example
```python
return ak_client_ip in ip_network('10.0.0.0/24')
@@ -40,6 +40,6 @@ Additionally, when the policy is executed from a flow, every variable from the f
This includes the following:
-- `prompt_data`: Data which has been saved from a prompt stage or an external source.
-- `application`: The application the user is in the process of authorizing.
-- `pending_user`: The currently pending user
+- `prompt_data`: Data which has been saved from a prompt stage or an external source.
+- `application`: The application the user is in the process of authorizing.
+- `pending_user`: The currently pending user
diff --git a/website/docs/policies/index.md b/website/docs/policies/index.md
index 078501684..bfae39d35 100644
--- a/website/docs/policies/index.md
+++ b/website/docs/policies/index.md
@@ -25,11 +25,11 @@ See [Expression Policy](expression.md).
This policy allows you to specify password rules, such as length and required characters.
The following rules can be set:
-- Minimum amount of uppercase characters.
-- Minimum amount of lowercase characters.
-- Minimum amount of symbols characters.
-- Minimum length.
-- Symbol charset (define which characters are counted as symbols).
+- Minimum amount of uppercase characters.
+- Minimum amount of lowercase characters.
+- Minimum amount of symbols characters.
+- Minimum length.
+- Symbol charset (define which characters are counted as symbols).
### Have I Been Pwned Policy
diff --git a/website/docs/property-mappings/expression.md b/website/docs/property-mappings/expression.md
index b50199093..37c8cdfdc 100644
--- a/website/docs/property-mappings/expression.md
+++ b/website/docs/property-mappings/expression.md
@@ -10,6 +10,6 @@ These variables are available in addition to the common variables/functions defi
### Context Variables
-- `user`: The current user. This may be `None` if there is no contextual user. ([ref](../expressions/reference/user-object.md))
-- `request`: The current request. This may be `None` if there is no contextual request. ([ref](https://docs.djangoproject.com/en/3.0/ref/request-response/#httprequest-objects))
-- Other arbitrary arguments given by the provider, this is documented on the Provider/Source.
+- `user`: The current user. This may be `None` if there is no contextual user. ([ref](../expressions/reference/user-object.md))
+- `request`: The current request. This may be `None` if there is no contextual request. ([ref](https://docs.djangoproject.com/en/3.0/ref/request-response/#httprequest-objects))
+- Other arbitrary arguments given by the provider, this is documented on the Provider/Source.
diff --git a/website/docs/providers/oauth2.md b/website/docs/providers/oauth2.md
index 6f9fe707d..cf2dca183 100644
--- a/website/docs/providers/oauth2.md
+++ b/website/docs/providers/oauth2.md
@@ -12,7 +12,6 @@ Scopes can be configured using Scope Mappings, a type of [Property Mappings](../
| Token | `/application/o/token/` |
| User Info | `/application/o/userinfo/` |
| End Session | `/application/o/end-session/` |
-| Introspect | `/application/o/end-session/` |
| JWKS | `/application/o//jwks/` |
| OpenID Configuration | `/application/o//.well-known/openid-configuration` |
diff --git a/website/docs/releases/0.10.md b/website/docs/releases/0.10.md
index 9b2720139..755b308e8 100644
--- a/website/docs/releases/0.10.md
+++ b/website/docs/releases/0.10.md
@@ -4,33 +4,33 @@ title: Release 0.10
This update brings a lot of big features, such as:
-- New OAuth2/OpenID Provider
+- New OAuth2/OpenID Provider
This new provider merges both OAuth2 and OpenID. It is based on the codebase of the old provider, which has been simplified and cleaned from the ground up. Support for Property Mappings has also been added. Because of this change, OpenID and OAuth2 Providers will have to be re-created.
-- Proxy Provider
+- Proxy Provider
Due to this new OAuth2 Provider, the Application Gateway Provider, now simply called "Proxy Provider" has been revamped as well. The new authentik Proxy integrates more tightly with authentik via the new Outposts system. The new proxy also supports multiple applications per proxy instance, can configure TLS based on authentik Keypairs, and more.
See [Proxy](../providers/proxy.md)
-- Outpost System
+- Outpost System
This is a new Object type, currently used only by the Proxy Provider. It manages the creation and permissions of service accounts, which are used by the outposts to communicate with authentik.
See [Outposts](../outposts/outposts.md)
-- Flow Import/Export
+- Flow Import/Export
Flows can now be imported and exported. This feature can be used as a backup system, or to share complex flows with other people. Example flows have also been added to the documentation to help you get going with authentik.
## Under the hood
-- authentik now runs on Django 3.1 and Channels with complete ASGI enabled
-- uwsgi has been replaced with Gunicorn and uvicorn
-- Elastic APM has been replaced with Sentry Performance metrics
-- Flow title is now configurable separately from the name
-- All logging output is now json
+- authentik now runs on Django 3.1 and Channels with complete ASGI enabled
+- uwsgi has been replaced with Gunicorn and uvicorn
+- Elastic APM has been replaced with Sentry Performance metrics
+- Flow title is now configurable separately from the name
+- All logging output is now json
## Upgrading
@@ -54,7 +54,7 @@ docker-compose up -d
A few options have changed:
-- `error_reporting` was changed from a simple boolean to a dictionary:
+- `error_reporting` was changed from a simple boolean to a dictionary:
```yaml
error_reporting:
@@ -63,8 +63,8 @@ error_reporting:
send_pii: false
```
-- The `apm` and `monitoring` blocks have been removed.
-- `serverReplicas` and `workerReplicas` have been added
+- The `apm` and `monitoring` blocks have been removed.
+- `serverReplicas` and `workerReplicas` have been added
### Upgrading
diff --git a/website/docs/releases/0.11.md b/website/docs/releases/0.11.md
index 6ec5c079c..c162a7b7c 100644
--- a/website/docs/releases/0.11.md
+++ b/website/docs/releases/0.11.md
@@ -4,18 +4,18 @@ title: Release 0.11
This update brings these headline features:
-- Add Backup and Restore, currently only externally schedulable, documented [here](../maintenance/backups/index.md)
-- New Admin Dashboard with more metrics and Charts
+- Add Backup and Restore, currently only externally schedulable, documented [here](../maintenance/backups/index.md)
+- 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
-- Add search to all table views
-- Outpost now supports a Docker Controller, which installs the Outpost on the same host as authentik, updates and manages it
-- Add Token Identifier
+- Add search to all table views
+- Outpost now supports a Docker Controller, which installs the Outpost on the same host as authentik, updates and manages it
+- Add Token Identifier
Tokens now have an identifier which is used to reference to them, so the Primary key is not shown in URLs
-- `core/applications/list` API now shows applications the user has access to via policies
+- `core/applications/list` API now shows applications the user has access to via policies
## Upgrading
diff --git a/website/docs/releases/0.9.md b/website/docs/releases/0.9.md
index 09c38fca1..2cb638b34 100644
--- a/website/docs/releases/0.9.md
+++ b/website/docs/releases/0.9.md
@@ -6,14 +6,14 @@ Due to some database changes that had to be rather sooner than later, there is n
To export data from your old instance, run this command:
-- docker-compose
+- docker-compose
```
docker-compose exec server ./manage.py dumpdata -o /tmp/authentik_dump.json authentik_core.User authentik_core.Group authentik_crypto.CertificateKeyPair authentik_audit.Event otp_totp.totpdevice otp_static.staticdevice otp_static.statictoken
docker cp authentik_server_1:/tmp/authentik_dump.json authentik_dump.json
```
-- kubernetes
+- kubernetes
```
kubectl exec -it authentik-web-... -- ./manage.py dumpdata -o /tmp/authentik_dump.json authentik_core.User authentik_core.Group authentik_crypto.CertificateKeyPair authentik_audit.Event otp_totp.totpdevice otp_static.staticdevice otp_static.statictoken
@@ -22,14 +22,14 @@ kubectl cp authentik-web-...:/tmp/authentik_dump.json authentik_dump.json
After that, create a new authentik instance in a different namespace (kubernetes) or in a different folder (docker-compose). Once this instance is running, you can use the following commands to restore the data. On docker-compose, you still have to run the `migrate` command, to create all database structures.
-- docker-compose
+- docker-compose
```
docker cp authentik_dump.json new_authentik_server_1:/tmp/authentik_dump.json
docker-compose exec server ./manage.py loaddata /tmp/authentik_dump.json
```
-- kubernetes
+- kubernetes
```
kubectl cp authentik_dump.json authentik-web-...:/tmp/authentik_dump.json
diff --git a/website/docs/sources.md b/website/docs/sources.md
index 97c45c707..d5e6a179b 100644
--- a/website/docs/sources.md
+++ b/website/docs/sources.md
@@ -10,12 +10,12 @@ Sources allow you to connect authentik to an existing user directory. They can a
This source allows users to enroll themselves with an external OAuth-based Identity Provider. The generic provider expects the endpoint to return OpenID-Connect compatible information. Vendor-specific implementations have their own OAuth Source.
-- Policies: Allow/Forbid users from linking their accounts with this provider.
-- Request Token URL: This field is used for OAuth v1 implementations and will be provided by the provider.
-- Authorization URL: This value will be provided by the provider.
-- Access Token URL: This value will be provided by the provider.
-- Profile URL: This URL is called by authentik to retrieve user information upon successful authentication.
-- Consumer key/Consumer secret: These values will be provided by the provider.
+- Policies: Allow/Forbid users from linking their accounts with this provider.
+- Request Token URL: This field is used for OAuth v1 implementations and will be provided by the provider.
+- Authorization URL: This value will be provided by the provider.
+- Access Token URL: This value will be provided by the provider.
+- Profile URL: This URL is called by authentik to retrieve user information upon successful authentication.
+- Consumer key/Consumer secret: These values will be provided by the provider.
## SAML Source
@@ -29,17 +29,17 @@ This source allows you to import users and groups from an LDAP Server.
For Active Directory, follow the [Active Directory Integration](https://goauthentik.io/docs/integrations/sources/active-directory/index)
:::
-- Server URI: URI to your LDAP server/Domain Controller.
-- Bind CN: CN of the bind user. This can also be a UPN in the format of `user@domain.tld`.
-- Bind password: Password used during the bind process.
-- Enable StartTLS: Enables StartTLS functionality. To use LDAPS instead, use port `636`.
-- Base DN: Base DN used for all LDAP queries.
-- Addition User DN: Prepended to the base DN for user queries.
-- Addition Group DN: Prepended to the base DN for group queries.
-- User object filter: Consider objects matching this filter to be users.
-- Group object filter: Consider objects matching this filter to be groups.
-- User group membership field: This field contains the user's group memberships.
-- Object uniqueness field: This field contains a unique identifier.
-- Sync groups: Enable/disable group synchronization. Groups are synced in the background every 5 minutes.
-- Sync parent group: Optionally set this group as the parent group for all synced groups. An example use case of this would be to import Active Directory groups under a root `imported-from-ad` group.
-- Property mappings: Define which LDAP properties map to which authentik properties. The default set of property mappings is generated for Active Directory. See also [LDAP Property Mappings](property-mappings/index.md#ldap-property-mapping)
+- Server URI: URI to your LDAP server/Domain Controller.
+- Bind CN: CN of the bind user. This can also be a UPN in the format of `user@domain.tld`.
+- Bind password: Password used during the bind process.
+- Enable StartTLS: Enables StartTLS functionality. To use LDAPS instead, use port `636`.
+- Base DN: Base DN used for all LDAP queries.
+- Addition User DN: Prepended to the base DN for user queries.
+- Addition Group DN: Prepended to the base DN for group queries.
+- User object filter: Consider objects matching this filter to be users.
+- Group object filter: Consider objects matching this filter to be groups.
+- User group membership field: This field contains the user's group memberships.
+- Object uniqueness field: This field contains a unique identifier.
+- Sync groups: Enable/disable group synchronization. Groups are synced in the background every 5 minutes.
+- Sync parent group: Optionally set this group as the parent group for all synced groups. An example use case of this would be to import Active Directory groups under a root `imported-from-ad` group.
+- Property mappings: Define which LDAP properties map to which authentik properties. The default set of property mappings is generated for Active Directory. See also [LDAP Property Mappings](property-mappings/index.md#ldap-property-mapping)
diff --git a/website/sidebars.js b/website/sidebars.js
index 1ecace20e..1481752cd 100644
--- a/website/sidebars.js
+++ b/website/sidebars.js
@@ -49,7 +49,9 @@ module.exports = {
"flow/stages/authenticator_static/index",
"flow/stages/authenticator_totp/index",
"flow/stages/authenticator_validate/index",
+ "flow/stages/authenticator_webauthn/index",
"flow/stages/captcha/index",
+ "flow/stages/deny",
"flow/stages/email/index",
"flow/stages/identification/index",
"flow/stages/invitation/index",
@@ -106,6 +108,7 @@ module.exports = {
type: "category",
label: "as Provider",
items: [
+ "integrations/services/apache-guacamole/index",
"integrations/services/aws/index",
"integrations/services/awx-tower/index",
"integrations/services/gitlab/index",
@@ -120,6 +123,7 @@ module.exports = {
"integrations/services/ubuntu-landscape/index",
"integrations/services/veeam-enterprise-manager/index",
"integrations/services/vmware-vcenter/index",
+ "integrations/services/wiki-js/index",
],
},
],
@@ -141,6 +145,7 @@ module.exports = {
"releases/0.14",
"releases/2021.1",
"releases/2021.2",
+ "releases/2021.3",
],
},
{