caddy: Add fallback handler to wildcard domains

This commit is contained in:
SebastianStork 2025-10-08 23:35:38 +02:00
parent e383ee383b
commit 65284294b1

View file

@ -140,7 +140,12 @@ in
}
'';
in
values |> lib.map (value: mkHostConfig value) |> lib.concatLines;
(values |> lib.map (value: mkHostConfig value) |> lib.concatLines)
+ ''
handle {
respond 404
}
'';
};
};
in