rice/hosts/ami/404.nix
buffet 2def5b10eb
All checks were successful
/ check (push) Successful in 2m44s
refactor: move repeated nginx snippets into one file
2024-06-05 09:40:42 +00:00

10 lines
204 B
Nix

{website, ...}: {
services.nginx = {
virtualHosts."404.buffet.sh" = {
default = true;
useACMEHost = "buffet.sh";
forceSSL = true;
root = "${website}/404.html";
};
};
}