From 77d2365a61263d2147587fa5d28e21f750df759b Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 11 Jun 2025 18:26:04 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(backend)=20fix=20OIDC=20returnTo?= =?UTF-8?q?=20parameter=20validation=20in=20Docker=20compose?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct OIDC_REDIRECT_ALLOWED_HOSTS configuration that was preventing proper URL validation. Thanks to @nathanvss for identifying and fixing the issue. Note: Update your common env file with corrected values. --- env.d/development/common.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.d/development/common.dist b/env.d/development/common.dist index 7b44fca2..90ee98ac 100644 --- a/env.d/development/common.dist +++ b/env.d/development/common.dist @@ -42,7 +42,7 @@ LOGIN_REDIRECT_URL=http://localhost:3000 LOGIN_REDIRECT_URL_FAILURE=http://localhost:3000 LOGOUT_REDIRECT_URL=http://localhost:3000 -OIDC_REDIRECT_ALLOWED_HOSTS=["http://localhost:8083", "http://localhost:3000"] +OIDC_REDIRECT_ALLOWED_HOSTS=localhost:8083,localhost:3000 OIDC_AUTH_REQUEST_EXTRA_PARAMS={"acr_values": "eidas1"} # Livekit Token settings