ark/hosts/wolumonde/modules/blog.nix
2023-04-06 08:22:22 +03:00

15 lines
277 B
Nix

{
pkgs,
inputs,
...
}: {
services.nginx.virtualHosts."gaze.systems" = {
enableACME = true;
forceSSL = true;
root = "${inputs.blog.packages.${pkgs.system}.site}";
locations."/".extraConfig = ''
add_header cache-control max-age=1800;
'';
};
}