bert: Add stjohnscccc.com manual redirect page

This commit is contained in:
Chandler Swift 2025-02-08 12:20:16 -06:00
parent 3928a5b44d
commit efb6bc7b95
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
2 changed files with 20 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./music.chandlerswift.com.nix ./music.chandlerswift.com.nix
./preview.chandlerswift.com.nix ./preview.chandlerswift.com.nix
./social.chandlerswift.com.nix ./social.chandlerswift.com.nix
./stjohnscccc.com.nix
./stjohnscccc.org.nix ./stjohnscccc.org.nix
./swiftgang.net.nix ./swiftgang.net.nix
./whereis.chandlerswift.com.nix ./whereis.chandlerswift.com.nix

View file

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