dotfiles/nix/hosts/hetznix/modules/nginx/vhosts/luke.oliverdavies.uk.nix

12 lines
256 B
Nix
Raw Normal View History

2024-12-02 22:33:08 +00:00
{
services.nginx.virtualHosts."luke.oliverdavies.uk" = {
useACMEHost = "oliverdavies.uk";
forceSSL = true;
root = "/var/www/vhosts/luke.oliverdavies.uk";
extraConfig = ''
add_header X-Robots-Tag "noindex, nofollow";
'';
};
}