dotfiles/modules/config/instances/config/caddy.nix
2025-12-09 00:52:21 -06:00

20 lines
288 B
Nix
Executable file

{ moduleFunctions }:
let
inherit (moduleFunctions.instancesFunctions)
dummy
;
caddyLabel = "Caddy";
caddyName = "caddy";
in
{
label = caddyLabel;
name = caddyName;
short = dummy;
ports = {
port0 = 80;
port1 = 443;
port2 = 8080;
port3 = 8443;
};
}