From b14b80b129b8e7d986c7f2035b0a454f0cb1b9cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Sat, 26 Oct 2024 11:13:05 +0200 Subject: [PATCH] [task-184] [mod] authelia:conf template --- roles/authelia/templates/conf-main.json.j2 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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}}"