fix nginx

This commit is contained in:
Ellie 2026-03-10 19:17:44 -07:00
parent 0885fdbfdd
commit b48e7ebb13
4 changed files with 24 additions and 25 deletions

15
services/nginx.nix Normal file
View file

@ -0,0 +1,15 @@
{ ... }:
{
security.acme = {
acceptTerms = true;
defaults.email = "wizzeh@protonmail.com";
};
networking.firewall.allowedTCPPorts = [
80
443
];
services.nginx.enable = true;
}