cutover successful

This commit is contained in:
TheWanderingCrow 2026-03-23 17:40:27 -04:00
parent b268fcdb24
commit 9f40b9c6d6
2 changed files with 12 additions and 3 deletions

View file

@ -17,7 +17,6 @@
# FIXME(TODO): Turn this into it's own backup module
./backup.nix
./database.nix
# Disks
inputs.disko.nixosModules.disko

View file

@ -39,11 +39,21 @@ in
services.caddy = {
enable = true;
virtualHosts = {
# "swgalaxyproject.com".extraConfig = ''
# reverse_proxy http://localhost:8080
# '';
# "nnsbluegrass.com".extraConfig = ''
# reverse_proxy http://localhost:9821
# '';
"swgalaxyproject.com".extraConfig = ''
reverse_proxy http://localhost:8080
file_server {
index ${maintFile}
}
'';
"nnsbluegrass.com".extraConfig = ''
reverse_proxy http://localhost:9821
file_server {
index ${maintFile}
}
'';
};
};