1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-08-08 22:46:33 +02:00

docs/docs/configuration/auth: fixed example of oidc-issuer-url for Keycloak (#1758)

Co-authored-by: Joel Speed <Joel.speed@hotmail.co.uk>
This commit is contained in:
Konstantin Shalygin
2022-09-01 00:07:49 +03:00
committed by GitHub
parent ff03c43842
commit c228d9e273

View File

@ -192,7 +192,7 @@ Make sure you set the following to the appropriate url:
--client-id=<your client's id> --client-id=<your client's id>
--client-secret=<your client's secret> --client-secret=<your client's secret>
--redirect-url=https://myapp.com/oauth2/callback --redirect-url=https://myapp.com/oauth2/callback
--oidc-issuer-url=https://<keycloak host>/realms/<your realm> --oidc-issuer-url=https://<keycloak host>/auth/realms/<your realm>
--allowed-role=<realm role name> // Optional, required realm role --allowed-role=<realm role name> // Optional, required realm role
--allowed-role=<client id>:<client role name> // Optional, required client role --allowed-role=<client id>:<client role name> // Optional, required client role
``` ```