{ services.nginx.enable = true; systemd.services.nginx.serviceConfig.ProtectHome = false; services.nginx.virtualHosts."stella.wolfgirl.systems" = { forceSSL = true; enableACME = true; extraConfig = '' charset utf-8; ''; locations."~ \"^/~(.+?)(/.*)?$\"" = { alias = "/home/$1/public_html$2"; index = "index.html"; extraConfig = '' error_page 404 /~$1/404.html; ''; }; }; services.nginx.virtualHosts."bun-e.fyi" = { forceSSL = true; enableACME = true; root = "/home/6a/public_html"; locations."/".index = "e.html"; extraConfig = '' charset utf-8; ''; }; security.acme = { acceptTerms = true; defaults.email = "me@ezri.pet"; }; }