From d7d8df759a0f40895949e3cea1813e140fd09181 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Mar 2026 13:02:14 +0000 Subject: [PATCH] Add fallback default in Caddyfile for DOMAIN_SUFFIX Without a fallback, an unset DOMAIN_SUFFIX expands to an empty string, making Caddy parse the site block as a second global options block and fail to start. Using {:localhost} defaults to localhost. --- proxy/Caddyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/Caddyfile b/proxy/Caddyfile index 2cf9439..76effb2 100644 --- a/proxy/Caddyfile +++ b/proxy/Caddyfile @@ -20,7 +20,7 @@ } # HIY dashboard — served at your root domain. -{$DOMAIN_SUFFIX} { +{$DOMAIN_SUFFIX:localhost} { reverse_proxy server:3000 }