25 lines
540 B
Nix
25 lines
540 B
Nix
|
{inputs, ...}: let
|
||
|
dom = "min.rip";
|
||
|
in {
|
||
|
services.nginx.virtualHosts.${dom} = {
|
||
|
root = "${inputs.min-rip}";
|
||
|
forceSSL = true;
|
||
|
enableACME = true;
|
||
|
|
||
|
locations."/" = {
|
||
|
tryFiles = "$uri $uri/ =404";
|
||
|
extraConfig = ''
|
||
|
add_header Cache-Control "max-age=15552000, must-revalidate";
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
locations."/robots.txt" = {
|
||
|
priority = 10000;
|
||
|
return = ''200 "User-Agent: ia_archiver\nDisallow: /"'';
|
||
|
extraConfig = ''
|
||
|
add_header Content-Type text/plain;
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|