bert: Add troop352.us

This commit is contained in:
Chandler Swift 2025-02-14 19:09:38 -06:00
parent efb6bc7b95
commit 8e73fab30f
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
2 changed files with 20 additions and 0 deletions

View file

@ -17,6 +17,7 @@
./stjohnscccc.com.nix ./stjohnscccc.com.nix
./stjohnscccc.org.nix ./stjohnscccc.org.nix
./swiftgang.net.nix ./swiftgang.net.nix
./troop352.us.nix
./whereis.chandlerswift.com.nix ./whereis.chandlerswift.com.nix
]; ];

View file

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