nixos/hosts/stella-web.nix

23 lines
528 B
Nix
Raw Normal View History

2024-09-27 14:25:51 +00:00
{
services.nginx.enable = true;
systemd.services.nginx.serviceConfig.ProtectHome = false;
services.nginx.virtualHosts."stella.wolfgirl.systems" = {
forceSSL = true;
enableACME = true;
2024-10-01 08:40:53 +00:00
extraConfig = ''
charset utf-8;
'';
2024-09-27 14:25:51 +00:00
locations."~ \"^/~(.+?)(/.*)?$\"" = {
alias = "/home/$1/public_html$2";
index = "index.html";
extraConfig = ''
error_page 404 /~$1/404.html;
'';
};
};
security.acme = {
acceptTerms = true;
defaults.email = "me@ezri.pet";
};
}