From 43f3d56caa09006d83f6324b6f2abee01e7d773f Mon Sep 17 00:00:00 2001 From: drmathias Date: Tue, 30 Sep 2025 11:55:57 +0100 Subject: [PATCH] fix: correctly reference cert and pem --- gateway/authelia/config/configuration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gateway/authelia/config/configuration.yml b/gateway/authelia/config/configuration.yml index 1c46559..3fdc16a 100644 --- a/gateway/authelia/config/configuration.yml +++ b/gateway/authelia/config/configuration.yml @@ -60,8 +60,8 @@ identity_providers: - key_id: "authelia" algorithm: "RS256" use: "sig" - certificate_chain: {{ secret "/run/secrets/OIDC_JWKS_AUTHELIA_PEM" | mindent 10 "|" | msquote }} - key: {{ secret "/run/secrets/OIDC_JWKS_AUTHELIA_CERT" | mindent 10 "|" | msquote }} + certificate_chain: {{ secret "/run/secrets/OIDC_JWKS_AUTHELIA_CERT" | mindent 10 "|" | msquote }} + key: {{ secret "/run/secrets/OIDC_JWKS_AUTHELIA_PEM" | mindent 10 "|" | msquote }} enable_client_debug_messages: false minimum_parameter_entropy: 8 enforce_pkce: "public_clients_only"