add flamesites

This commit is contained in:
TheWanderingCrow 2025-08-18 10:07:16 -04:00
parent 113c63fcff
commit fbeea79404
2 changed files with 28 additions and 0 deletions

View file

@ -50,6 +50,7 @@
"modules/services/fail2ban"
"modules/services/ollama/nginx.nix" # Just host the nginx path back to Parzival
"modules/services/netbox"
"modules/services/flamesites"
])
];
@ -123,6 +124,9 @@
"ta.wanderingcrow.net" = {};
"chat.wanderingcrow.net" = {};
"netbox.wanderingcrow.net" = {};
# Sites I host for someone else
"test.swgalaxyproject.com" = {};
"swgalaxyproject.com" = {};
};
};
}

View file

@ -0,0 +1,24 @@
{inputs, ...}: {
services.nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"swgalaxyproject.com" = {
forceSSL = true;
useACMEHost = "swgalaxyproject.com";
locations."/" = {
proxyPass = "";
proxyWebsockets = true;
};
};
"test.swgalaxyproject.com" = {
forceSSL = true;
useACMEHost = "test.swgalaxyproject.com";
locations."/" = {
proxyPass = "";
proxyWebsockets = true;
};
};
};
};
}