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

20 lines
480 B
Nix
Raw Normal View History

2025-02-07 21:48:24 -06:00
{
services.caddy.virtualHosts."chandlerswift.com".extraConfig = ''
encode zstd gzip
file_server
root * /srv/www/chandlerswift.com
# hide .git # ???
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
services.caddy.virtualHosts."www.chandlerswift.com".extraConfig = "redir https://chandlerswift.com{uri}";
systemd.tmpfiles.settings."10-chandlerswift-com" = {
"/srv/www/chandlerswift.com" = {
d = {};
};
};
}