Skip to content

Commit 6bd92ee

Browse files
Viczeiclaude
andcommitted
fix(keycloak): use permissive redirect URI pattern for dev environments
Keycloak wildcard `*.domain` doesn't match multi-segment subdomains like `egapro-install-local-keycloak.ovh.fabrique.social.gouv.fr`. Use `https://*` for dev/local Keycloak to avoid redirect_uri errors. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8b831f0 commit 6bd92ee

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.kontinuous/env/dev/templates/keycloak.configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ data:
252252
"secret": "egapro-local-secret",
253253
"redirectUris": [
254254
"http://localhost:3000/*",
255-
"https://*.ovh.fabrique.social.gouv.fr/*"
255+
"https://*"
256256
],
257257
"webOrigins": [
258258
"http://localhost:3000",

keycloak/realm-egapro.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@
236236
"secret": "egapro-local-secret",
237237
"redirectUris": [
238238
"http://localhost:3000/*",
239-
"https://*.ovh.fabrique.social.gouv.fr/*"
239+
"https://*"
240240
],
241241
"webOrigins": [
242242
"http://localhost:3000",

0 commit comments

Comments
 (0)