dotfiles/config/instances/config/nginx.nix
2025-01-08 19:06:14 -06:00

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
};
}