ark/hosts/wolumonde/modules/blog.nix

15 lines
277 B
Nix
Raw Normal View History

2022-08-11 02:57:40 +03:00
{
pkgs,
inputs,
...
}: {
services.nginx.virtualHosts."gaze.systems" = {
enableACME = true;
forceSSL = true;
2023-04-06 08:22:22 +03:00
root = "${inputs.blog.packages.${pkgs.system}.site}";
2022-08-11 02:57:40 +03:00
locations."/".extraConfig = ''
add_header cache-control max-age=1800;
'';
};
}