Skip to content

Commit

Permalink
Fix auth-server-url for keycloak
Browse files Browse the repository at this point in the history
  • Loading branch information
oliv37 authored and ebullient committed Jan 24, 2023
1 parent 6e805b3 commit 7bacf40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class OidcCommonConfig {
* The base URL of the OpenID Connect (OIDC) server, for example, `https://host:port/auth`.
* OIDC discovery endpoint will be called by default by appending a '.well-known/openid-configuration' path to this URL.
* Note if you work with Keycloak OIDC server, make sure the base URL is in the following format:
* `https://host:port/auth/realms/{realm}` where `{realm}` has to be replaced by the name of the Keycloak realm.
* `https://host:port/realms/{realm}` where `{realm}` has to be replaced by the name of the Keycloak realm.
*/
@ConfigItem
public Optional<String> authServerUrl = Optional.empty();
Expand Down

0 comments on commit 7bacf40

Please sign in to comment.