mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
docs: fix keycloak documentation
This PR https://github.com/hedgedoc/hedgedoc/pull/2810 introduced a bug when using some OIDC providers. The environment variabiles in the compose files are already escaped and the quoted text get sent to the OIDC provider, that fails to parse it. Signed-off-by: VaiTon <eyadlorenzo@gmail.com>
This commit is contained in:
parent
2ecea8a845
commit
0dfe793b1c
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ CMD_OAUTH2_AUTHORIZATION_URL=https://keycloak.example.com/auth/realms/your-realm
|
|||
CMD_OAUTH2_CLIENT_ID=<your client ID>
|
||||
CMD_OAUTH2_CLIENT_SECRET=<your client secret, which you can find under the Credentials tab for your client>
|
||||
CMD_OAUTH2_PROVIDERNAME=Keycloak
|
||||
CMD_OAUTH2_SCOPE="openid email profile"
|
||||
CMD_OAUTH2_SCOPE=openid email profile
|
||||
CMD_DOMAIN=<hedgedoc.example.com>
|
||||
CMD_PROTOCOL_USESSL=true
|
||||
CMD_URL_ADDPORT=false
|
||||
|
|
Loading…
Reference in a new issue