infra/hosts/nachtigall/apps/nginx.nix
2023-10-28 15:34:31 +02:00

24 lines
359 B
Nix

{
config,
lib,
pkgs,
self,
...
}: let
acmeEmailAddress = "admins@pub.solar";
webserverGroup = "hakkonaut";
in {
services.nginx = {
enable = true;
group = webserverGroup;
enableReload = true;
};
security.acme = {
acceptTerms = true;
email = acmeEmailAddress;
};
networking.firewall.allowedTCPPorts = [80 443];
}