I’m upgrading Keycloak to version 21.
I provide this configuration in my keycloak.conf
# HTTP
http-enabled=true
http-relative-path = /auth/
http-port=18080
enable-http2=false
hostname-strict-https=false
hostname-admin-url=http://127.0.0.1:18080/auth
proxy=edge
proxy-address-forwarding=true
hostname=127.0.0.1
transaction-xa-enabled=false
When i navigate to http://127.0.0.1:18080/auth everything is ok.
I try to enter in admin console and my routing is redirect to http://127.0.0.1:18080/auth/admin/master/console/
Here I have a 404 not found for “step1.html”.
error
I try to navigate to http://127.0.0.1:18080/auth/realms/master/protocol/openid-connect/3p-cookies/step1.html and the response code is 200.
success
I’m not understanding where I’m going wrong with the configurations.