diff --git a/roles/authelia/templates/conf-main.json.j2 b/roles/authelia/templates/conf-main.json.j2 index ef5d46a..84a4214 100644 --- a/roles/authelia/templates/conf-main.json.j2 +++ b/roles/authelia/templates/conf-main.json.j2 @@ -188,7 +188,12 @@ "identity_providers": { "oidc": { "hmac_secret": "{{var_authelia_oidc_hmac_secret}}", - "jwks": "{{temp_tls_result.privatekey | replace('\n', '\\n')}}", + "jwks": [ + { + "algorithm": "RS256", + "key": "{{temp_tls_result.privatekey | replace('\n', '\\n')}}" + } + ], "lifespans": { "access_token": "{{var_authelia_oidc_lifespan_access_token}}", "refresh_token": "{{var_authelia_oidc_lifespan_refresh_token}}"