From 7bacf40a015d712880f0585b5d791a1f0f6afab5 Mon Sep 17 00:00:00 2001 From: oliv37 Date: Sun, 18 Dec 2022 15:01:57 +0100 Subject: [PATCH] Fix auth-server-url for keycloak --- .../java/io/quarkus/oidc/common/runtime/OidcCommonConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/oidc-common/runtime/src/main/java/io/quarkus/oidc/common/runtime/OidcCommonConfig.java b/extensions/oidc-common/runtime/src/main/java/io/quarkus/oidc/common/runtime/OidcCommonConfig.java index f3fcf81a68dd6..433dbe70c1b88 100644 --- a/extensions/oidc-common/runtime/src/main/java/io/quarkus/oidc/common/runtime/OidcCommonConfig.java +++ b/extensions/oidc-common/runtime/src/main/java/io/quarkus/oidc/common/runtime/OidcCommonConfig.java @@ -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 authServerUrl = Optional.empty();