Skip to content

Commit 0557fb0

Browse files
Fixed Keycloak .well-known URL (#615)
Fixed keycloak URL
1 parent 58433f4 commit 0557fb0

File tree

1 file changed

+1
-1
lines changed
  • content/nginx/deployment-guides/single-sign-on/oidc-njs

1 file changed

+1
-1
lines changed

content/nginx/deployment-guides/single-sign-on/oidc-njs/keycloak.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Configure NGINX Plus as the OpenID Connect relying party:
118118
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.
119119

120120
```shell
121-
$ curl https://<keycloak-server-address>/auth/realms/master/.well-known/openid-configuration | python -m json.tool
121+
$ curl https://<keycloak-server-address>/realms/master/.well-known/openid-configuration | python -m json.tool
122122
...
123123
{
124124
"authorization_endpoint": "https://<keycloak-server-address>/auth/realms/master/protocol/openid-connect/auth",

0 commit comments

Comments
 (0)