Skip to content

Commit

Permalink
Merge pull request #2878 from manics/auth-doc-keycloak17+
Browse files Browse the repository at this point in the history
docs: remove /auth from keycloak URLs
  • Loading branch information
consideRatio committed Sep 18, 2022
2 parents 7881d61 + 9776f8a commit 9a7d03d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/administrator/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ hub:
[KeyCloak](https://www.keycloak.org) is an open source based provider of
identity management that you can host yourself. Below is an example on how you
can configure the GenericOAuthenticator class to authenticate against a KeyCloak
server.
server (version 17 or later).

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

0 comments on commit 9a7d03d

Please sign in to comment.