mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
17 lines
259 B
Nix
Executable file
17 lines
259 B
Nix
Executable file
{instancesFunctions}: let
|
|
inherit
|
|
(instancesFunctions)
|
|
dummy
|
|
;
|
|
|
|
nginxLabel = "Ngnix";
|
|
nginxName = "nginx";
|
|
in {
|
|
name = nginxName;
|
|
label = nginxLabel;
|
|
email = dummy;
|
|
ports = {
|
|
port0 = 8080; # HTTP
|
|
port1 = 8443; # HTTPS
|
|
};
|
|
}
|