Skip to content

Commit 9776f8a

Browse files
committed
docs: remove /auth from keycloak URLs
Current Keycloak version is 19. Versions 17+ do not have `/auth` in their URLs https://www.keycloak.org/migration/migrating-to-quarkus
1 parent 78e2069 commit 9776f8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/source/administrator/authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ hub:
376376
[KeyCloak](https://www.keycloak.org) is an open source based provider of
377377
identity management that you can host yourself. Below is an example on how you
378378
can configure the GenericOAuthenticator class to authenticate against a KeyCloak
379-
server.
379+
server (version 17 or later).
380380

381381
To configure an OpenID Connect client, see [KeyCloak's own
382382
documentation](https://www.keycloak.org/docs/latest/server_admin/index.html#_oidc_clients).
@@ -388,9 +388,9 @@ hub:
388388
client_id: your-client-id
389389
client_secret: your-client-secret
390390
oauth_callback_url: https://your-jupyterhub-domain/hub/oauth_callback
391-
authorize_url: https://${host}/auth/realms/${realm}/protocol/openid-connect/auth
392-
token_url: https://${host}/auth/realms/${realm}/protocol/openid-connect/token
393-
userdata_url: https://${host}/auth/realms/${realm}/protocol/openid-connect/userinfo
391+
authorize_url: https://${host}/realms/${realm}/protocol/openid-connect/auth
392+
token_url: https://${host}/realms/${realm}/protocol/openid-connect/token
393+
userdata_url: https://${host}/realms/${realm}/protocol/openid-connect/userinfo
394394
login_service: keycloak
395395
username_key: preferred_username
396396
userdata_params:

0 commit comments

Comments
 (0)