From 2ec6244fca6cd10722a6657974083f81cb19cb1c Mon Sep 17 00:00:00 2001 From: Vegard Hagen Date: Wed, 8 Jan 2025 18:57:12 +0100 Subject: [PATCH] fix(netbird): change dashboard redirect URLs default callback url contains a fragment component in violation OAuth2.0 spec https://github.com/authelia/authelia/discussions/7185#discussioncomment-11613126 https://github.com/netbirdio/dashboard/blob/14d2d688198a633e745f59c2d0bed9de146d2be5/src/utils/config.ts#L26-L27 --- k8s/infra/vpn/netbird/dashboard/kustomization.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/k8s/infra/vpn/netbird/dashboard/kustomization.yaml b/k8s/infra/vpn/netbird/dashboard/kustomization.yaml index c70d50c..30cde75 100644 --- a/k8s/infra/vpn/netbird/dashboard/kustomization.yaml +++ b/k8s/infra/vpn/netbird/dashboard/kustomization.yaml @@ -8,6 +8,8 @@ configMapGenerator: # variables: https://github.com/netbirdio/dashboard/blob/main/config.json - AUTH_AUDIENCE="netbird-dashboard" - AUTH_AUTHORITY="https://keycloak.stonegarden.dev/realms/homelab" + - AUTH_REDIRECT_URI="/callback" + - AUTH_SILENT_REDIRECT_URI="/silent-callback" - AUTH_CLIENT_ID="netbird-dashboard" - AUTH_SUPPORTED_SCOPES="openid profile email offline_access netbird-api" - USE_AUTH0="false"