Fix Keycloak callback URL configuration - use path only instead of full URL
This commit is contained in:
parent
5f8720bb63
commit
c98cbc5388
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue