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

34 lines
713 B
Plaintext
Raw Normal View History

{
2025-10-07 14:35:48 +02:00
"client_id": "{{cfg_authelia_for_owncloud.desktop.client_id}}",
2024-10-26 11:54:25 +02:00
"client_secret": "{{temp_authelia_for_owncloud_desktop_client_secret_hashed.stdout}}",
2024-07-02 00:11:22 +02:00
"client_name": "ownCloud | Desktop Client",
2025-10-07 14:35:48 +02:00
"public": false,
"authorization_policy": "one_factor",
2025-10-07 14:35:48 +02:00
"require_pkce": true,
"pkce_challenge_method": "S256",
"scopes": [
"openid",
2025-10-07 14:35:48 +02:00
"offline_access",
"groups",
"profile",
2025-10-07 14:35:48 +02:00
"email"
],
"redirect_uris": [
"http://127.0.0.1",
"http://localhost"
2025-10-07 14:35:48 +02:00
],
"response_types": [
"code"
],
"grant_types": [
"authorization_code",
"refresh_token"
2025-10-07 17:09:03 +02:00
],
2025-10-07 14:35:48 +02:00
"access_token_signed_response_alg": "none",
"userinfo_signed_response_alg": "none",
"token_endpoint_auth_method": "client_secret_basic"
}