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

18 lines
473 B
Text
Raw Permalink Normal View History

2024-08-22 13:31:42 +00:00
{
"client_id": "{{var_authelia_for_forgejo_client_id}}",
2024-10-26 10:23:40 +02:00
"client_secret": "{{temp_authelia_for_forgejo_client_secret_hashed.stdout}}",
2024-08-22 13:31:42 +00:00
"client_name": "Forgejo",
"public": false,
"authorization_policy": "one_factor",
"redirect_uris": [
"{{var_authelia_for_forgejo_forgejo_url_base}}/user/oauth2/authelia/callback"
],
"scopes": [
"openid",
"email",
"profile"
],
"userinfo_signed_response_alg": "none",
"token_endpoint_auth_method": "client_secret_basic"
}