bert: Add svsindustries.org fileserver

Co-Authored-By: Eric Villnow <eric@vill.now>
This commit is contained in:
Chandler Swift 2025-09-24 20:27:34 -05:00
parent 53947efb99
commit 85e5dfd84b
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
2 changed files with 21 additions and 0 deletions

View file

@ -22,6 +22,7 @@
./social.chandlerswift.com.nix ./social.chandlerswift.com.nix
./stjohnscccc.com.nix ./stjohnscccc.com.nix
./stjohnscccc.org.nix ./stjohnscccc.org.nix
./svsindustries.org.nix
./swiftgang.net.nix ./swiftgang.net.nix
./troop352.us.nix ./troop352.us.nix
./whereis.chandlerswift.com.nix ./whereis.chandlerswift.com.nix

View file

@ -0,0 +1,20 @@
{
services.caddy.virtualHosts."svsindustries.org" = {
# serverAliases = ["*.svsindustries.org"];
extraConfig = ''
encode zstd gzip
file_server
root * /srv/www/svsindustries.org
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
};
systemd.tmpfiles.settings."10-svsindustries-org" = {
"/srv/www/svsindustries.org" = {
d = {};
};
};
}