dotfiles/nix/hosts/hetznix/services/caddy/vhosts/eric.nix

13 lines
249 B
Nix
Raw Normal View History

2025-02-14 23:05:10 +00:00
{
services.caddy.virtualHosts."eric.oliverdavies.uk" = {
useACMEHost = "oliverdavies.uk";
extraConfig = ''
encode gzip
root * /var/www/vhosts/eric
file_server
header X-Robots-Tag "noindex, nofollow"
'';
};
}