From 0b4be70c00910efd6caa84b60f9d14d3a9bd8f8a Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 10 Mar 2021 23:15:25 +0100 Subject: [PATCH] web: fix path for fallback flow view --- web/src/authentik.css | 2 +- .../docs/integrations/services/apache-guacamole/index.mdx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/authentik.css b/web/src/authentik.css index f4569bdaf..df941a84a 100644 --- a/web/src/authentik.css +++ b/web/src/authentik.css @@ -83,7 +83,7 @@ select[multiple] { /* ensure background on non-flow pages match */ .pf-c-background-image::before { - background-image: url("dist/assets/images/flow_background.jpg"); + background-image: url("/static/dist/assets/images/flow_background.jpg"); background-position: center; } diff --git a/website/docs/integrations/services/apache-guacamole/index.mdx b/website/docs/integrations/services/apache-guacamole/index.mdx index d3bc40130..a823aca32 100644 --- a/website/docs/integrations/services/apache-guacamole/index.mdx +++ b/website/docs/integrations/services/apache-guacamole/index.mdx @@ -43,8 +43,8 @@ import TabItem from '@theme/TabItem'; ```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_ISSUER: https://authentik.company/application/o/*Slug of the application from above*/ +OPENID_JWKS_ENDPOINT: https://authentik.company/application/o/*Slug of the application from above*/jwks/ OPENID_REDIRECT_URI: https://guacamole.company/ # This must match the redirect URI above ``` @@ -54,8 +54,8 @@ OPENID_REDIRECT_URI: https://guacamole.company/ # This must match the redirect U ``` 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-issuer=https://authentik.company/application/o/*Slug of the application from above*/ +openid-jwks-endpoint=https://authentik.company/application/o/*Slug of the application from above*/jwks/ openid-redirect-uri=https://guacamole.company/ # This must match the redirect URI above ```