machine-config/bert/services/http/troop352.us.nix
Chandler Swift 646eb50eba
bert: Redirect all troop352.us URLs to /
This is for backwards compatibility with the old site, which had e.g.
the calendar at `/calendar/`, etc.
2025-02-14 19:16:28 -06:00

26 lines
512 B
Nix

{
services.caddy.virtualHosts."troop352.us" = {
serverAliases = ["www.troop352.us" "troop352-demo.chandlerswift.com"];
extraConfig = ''
encode zstd gzip
file_server
root * /srv/www/troop352.us
@notRoot {
not path /
not file
}
redir @notRoot /
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
};
systemd.tmpfiles.settings."10-troop352-us" = {
"/srv/www/troop352.us" = {
d = {};
};
};
}