ansible-base/roles/authelia-for-dokuwiki/templates/authelia-client-conf.json.j2

18 lines
427 B
Text
Raw Normal View History

2023-12-18 08:14:07 +01:00
{
2024-03-21 23:44:26 +01:00
"client_id": "{{var_authelia_for_dokuwiki_client_id}}",
2024-10-26 10:20:55 +02:00
"client_secret": "{{temp_authelia_for_dokuwiki_client_secret_hashed.stdout}}",
2024-03-21 23:44:26 +01:00
"client_name": "DokuWiki",
2023-12-18 08:14:07 +01:00
"public": false,
"authorization_policy": "one_factor",
2024-03-21 23:44:26 +01:00
"redirect_uris": [
"{{var_authelia_for_dokuwiki_dokuwiki_url_base}}/doku.php"
],
2023-12-18 08:14:07 +01:00
"scopes": [
"openid",
"email",
2023-12-19 23:09:38 +01:00
"profile",
"groups"
2024-03-21 23:57:00 +01:00
],
"token_endpoint_auth_method": "client_secret_post"
2023-12-18 08:14:07 +01:00
}