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

@ -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;
};
};
};
};
}