machine-config/bert/services/http/darylfanclub.chandlerswift.com.nix

18 lines
428 B
Nix

{
services.caddy.virtualHosts."darylfanclub.chandlerswift.com" = {
extraConfig = ''
encode zstd gzip
file_server
root * /srv/www/darylfanclub.chandlerswift.com
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
};
systemd.tmpfiles.settings."10-darylfanclub-chandlerswift-com" = {
"/srv/www/darylfanclub.chandlerswift.com" = {
d = {};
};
};
}