fix: cert printing config issue

Signed-off-by: Thomas Stocker <thomas.stocker.pro@gmail.com>
This commit is contained in:
Thomas Stocker
2025-11-04 13:51:31 +01:00
committed by Bryan Frimin
parent 4638c72a11
commit 53965631c8

View File

@@ -127,8 +127,10 @@ EOF
saml: saml:
session-duration: ${SAML_SESSION_DURATION:-604800} session-duration: ${SAML_SESSION_DURATION:-604800}
cleanup-interval-seconds: ${SAML_CLEANUP_INTERVAL_SECONDS:-0} cleanup-interval-seconds: ${SAML_CLEANUP_INTERVAL_SECONDS:-0}
certificate: "${SAML_CERTIFICATE:-}" certificate: |
private-key: "${SAML_PRIVATE_KEY:-}" $(echo "${SAML_CERTIFICATE:-}" | sed 's/^/ /')
private-key: |
$(echo "${SAML_PRIVATE_KEY:-}" | sed 's/^/ /')
EOF EOF
fi fi