We’ve just updgraded to keycloak v25, including all the changes in the configurations files that are specified in the guideline.
Since this upgrade, we’ve been having troubles when sending requests to the admin console. It seems that, after upgrading, some requests that should have been sended to the hostname-admin route are sended to the wrong route instead (the one specified in the hostname config label).
For instance, one request before the upgrade was “https://admin.myhostname:8443/admin/serverinfo” and after upgrading, this same request is replaced by “https://myhostname/auth/admin/serverinfo” which returns 404 not found.
The config proxy variables before updating (hostname v1):
hostname-strict-backchannel=false
hostname-strict=true
hostname-strict-https=true
spi-sticky-session-encoder-infinispan-should-attach-route=false
proxy=passthrough
hostname-url={{ hostname_url }}
hostname-admin-url={{ hostname-admin_url }}
The config proxy after updating (hostname v2):
hostname-backchannel-dynamic=true
hostname-strict=true
spi-sticky-session-encoder-infinispan-should-attach-route=false
hostname={{ hostname_url }}
hostname-admin={{ hostname-admin_url }}
Thanks in advance.