CrOS/modules/services/flamesites/default.nix
TheWanderingCrow fbeea79404 add flamesites
2025-08-18 10:07:16 -04:00

24 lines
555 B
Nix

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