mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-15 19:10:53 -06:00
20 lines
288 B
Nix
Executable file
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;
|
|
};
|
|
}
|