Hello
We have KC behind reverse proxy with context root of "/auth"
All of our applications then have different context roots as well ("/app1", "/app2", etc, etc)
Again example:
Since each app is a client in Keycloak, we'd like to set the client's "Root URL" using a variable (so that it can be changed in one spot)
Something like "
${authBaseUrl}" - but we can't use this variable because it resolves to Keycloak URL (so "
${authBaseUrl}/app1/" would resolve to
https://customer.domain.com/auth/app1/ which is incorrect)
Is it possible to set a custom property/variable (maybe in quarkus.properties?) and be able to reference it in Keycloak Admin Console for purposes of client definitions?
Thanks
Z...