dotfiles/config/instances/config/nginx.nix

18 lines
259 B
Nix
Raw Normal View History

2024-11-10 01:29:37 -06:00
{instancesFunctions}: let
2025-01-08 19:06:14 -06:00
inherit
(instancesFunctions)
dummy
;
2024-11-10 01:29:37 -06:00
nginxLabel = "Ngnix";
nginxName = "nginx";
in {
name = nginxName;
label = nginxLabel;
2024-11-10 02:07:51 -06:00
email = dummy;
2024-11-10 01:29:37 -06:00
ports = {
port0 = 8080; # HTTP
port1 = 8443; # HTTPS
};
}