dotfiles/nix/hosts/hetznix/services/caddy/vhosts/files.oliverdavies.uk.nix

16 lines
309 B
Nix
Raw Normal View History

2025-01-16 08:03:15 +00:00
{
services.caddy.virtualHosts."files.oliverdavies.uk" = {
useACMEHost = "oliverdavies.uk";
extraConfig = ''
file_server {
header Content-Disposition "attachment"
}
root * /var/www/vhosts/files.oliverdavies.uk
header X-Robots-Tag "noindex, nofollow"
'';
};
}