mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
19 lines
283 B
Nix
Executable file
19 lines
283 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;
|
|
};
|
|
}
|