nixos/hosts/stella-web.nix
2024-10-07 19:32:02 -04:00

36 lines
895 B
Nix

{
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."wolfgirl.systems" = {
forceSSL = true;
enableACME = true;
root = "/home/azriel/wolfgirl.systems/book";
};
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";
};
}