From 01da2ac352d853050c5efd556cd06e2a407dcbb7 Mon Sep 17 00:00:00 2001 From: snowjet <552963+snowjet@users.noreply.github.com> Date: Sun, 29 May 2022 19:20:42 +1000 Subject: [PATCH] Update KeyCloak Auth Provider oidc_issuer_url (#1661) The correct URL for the oidc-issuer-url in KeyCloak v18.0 is: https:///realms/. Using the old URL causes oauth2-proxy to crash on startup. Co-authored-by: Joel Speed --- docs/docs/configuration/auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/auth.md b/docs/docs/configuration/auth.md index 012bcfaf..2617e380 100644 --- a/docs/docs/configuration/auth.md +++ b/docs/docs/configuration/auth.md @@ -192,7 +192,7 @@ Make sure you set the following to the appropriate url: --client-id= --client-secret= --redirect-url=https://myapp.com/oauth2/callback - --oidc-issuer-url=https:///auth//basic + --oidc-issuer-url=https:///realms/ --allowed-role= // Optional, required realm role --allowed-role=: // Optional, required client role ```