Profile page "Page not found"

I try to use this url /auth/realms//account on my Keycloak 24.0.2 instance. But all i get is an “Page not found”.

What do i need to configure to get it working.

What i understood so fare is, that since release 24.0.0 the user profile is enabled by default (see release_notes)

I use keycloak as docker instance with these environment variables:
- KEYCLOAK_ADMIN
- KEYCLOAK_ADMIN_PASSWORD
- KC_DB
- KC_DB_USERNAME
- KC_DB_PASSWORD
- KC_DB_URL
- KC_HOSTNAME
- KC_PORT=8080
- KC_HTTP_ENABLED=true
- KC_PROXY_HEADERS=xforwarded

2 potential problems here:

  1. try do the request without the /auth path part, if you haven’t configured it explicitly (which I don’t see in your posted config)
  2. there’s a double // in your path

Oh sorry. The URL was mangled while posting the real url is -server-/auth/realms/-realm-/account

I used and which got removed.

Edit: tried your suggestion -server-/realms/-realm-/account/ and it WORKS.

Thanks for your very fast reply.