From 8109fcd18b2a33cc9cd2680ad7abfa1726062214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=2E=20Nam=C3=A8che?= Date: Wed, 8 Apr 2026 12:50:00 +0300 Subject: [PATCH] caddy: Fix bug default custom_cert --- seb4itik/byow/roles/caddy/templates/Caddyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seb4itik/byow/roles/caddy/templates/Caddyfile b/seb4itik/byow/roles/caddy/templates/Caddyfile index e47db00..9781052 100644 --- a/seb4itik/byow/roles/caddy/templates/Caddyfile +++ b/seb4itik/byow/roles/caddy/templates/Caddyfile @@ -178,7 +178,7 @@ } {% endfor %} -{% if site.custom_cert | default (false) %} +{% if site.custom_cert | default (caddy_sites_defaults.custom_cert) %} tls {{ site.custom_cert_file }} {{ site.custom_cert_key_file }} {% endif %}