fix: correctly reference cert and pem

This commit is contained in:
2025-09-30 11:55:57 +01:00
parent 4bbcf3befe
commit 43f3d56caa
+2 -2
View File
@@ -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"