dotfiles/config/instances/config/caddy.nix
2024-11-10 23:40:39 -06:00

16 lines
270 B
Nix
Executable file

{instancesFunctions}: let
inherit (instancesFunctions) sopsPath;
caddyLabel = "Caddy";
caddyName = "caddy";
in {
label = caddyLabel;
name = caddyName;
sops = {
path0 = "${sopsPath}/${caddyName}";
};
ports = {
port0 = 80;
port1 = 443;
};
}