From 16c4d24e015402c472439802ec91dc047d15db4a Mon Sep 17 00:00:00 2001 From: fiorucci Date: Wed, 28 May 2025 08:58:03 +0100 Subject: [PATCH] Fixed keycloak URL --- .../nginx/deployment-guides/single-sign-on/oidc-njs/keycloak.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/nginx/deployment-guides/single-sign-on/oidc-njs/keycloak.md b/content/nginx/deployment-guides/single-sign-on/oidc-njs/keycloak.md index eec74c7f0..a38016bdd 100644 --- a/content/nginx/deployment-guides/single-sign-on/oidc-njs/keycloak.md +++ b/content/nginx/deployment-guides/single-sign-on/oidc-njs/keycloak.md @@ -118,7 +118,7 @@ Configure NGINX Plus as the OpenID Connect relying party: 3. Get the URLs for the authorization endpoint, token endpoint, and JSON Web Key (JWK) file from the Keycloak configuration. Run the following `curl` command in a terminal, piping the output to the indicated `python` command to output the entire configuration in an easily readable format. We've abridged the output to show only the relevant fields. ```shell - $ curl https:///auth/realms/master/.well-known/openid-configuration | python -m json.tool + $ curl https:///realms/master/.well-known/openid-configuration | python -m json.tool ... { "authorization_endpoint": "https:///auth/realms/master/protocol/openid-connect/auth",