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