From c98cbc5388ae31d5259d2fe8791b49f77ad04e5b Mon Sep 17 00:00:00 2001 From: Matt Date: Sat, 14 Jun 2025 14:16:35 +0200 Subject: [PATCH] Fix Keycloak callback URL configuration - use path only instead of full URL --- nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 0ba5982..4be29f0 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -130,7 +130,7 @@ export default defineNuxtConfig({ issuer: process.env.KEYCLOAK_ISSUER || "https://auth.portnimara.dev/realms/client-portal", clientId: process.env.KEYCLOAK_CLIENT_ID || "client-portal", clientSecret: process.env.KEYCLOAK_CLIENT_SECRET || "", - callbackUrl: process.env.KEYCLOAK_CALLBACK_URL || "", + callbackUrl: "/auth/callback", // Use path only, not full URL scope: ["openid", "email", "profile"], }, config: {