Skip to content

Commit 787f85d

Browse files
authored
Merge pull request #29942 from oliv37/patch-2
Fix auth-server-url for keycloak
2 parents 2b112b1 + c37ae54 commit 787f85d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/oidc-common/runtime/src/main/java/io/quarkus/oidc/common/runtime/OidcCommonConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class OidcCommonConfig {
1414
* The base URL of the OpenID Connect (OIDC) server, for example, `https://host:port/auth`.
1515
* OIDC discovery endpoint will be called by default by appending a '.well-known/openid-configuration' path to this URL.
1616
* Note if you work with Keycloak OIDC server, make sure the base URL is in the following format:
17-
* `https://host:port/auth/realms/{realm}` where `{realm}` has to be replaced by the name of the Keycloak realm.
17+
* `https://host:port/realms/{realm}` where `{realm}` has to be replaced by the name of the Keycloak realm.
1818
*/
1919
@ConfigItem
2020
public Optional<String> authServerUrl = Optional.empty();

0 commit comments

Comments
 (0)