CrOS/modules/services/flamesites/default.nix
TheWanderingCrow 068c3c9dff flamesites
2025-08-19 17:37:46 -04:00

24 lines
597 B
Nix

{inputs, ...}: {
services.nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"swgalaxyproject.com" = {
forceSSL = true;
useACMEHost = "swgalaxyproject.com";
locations."/" = {
proxyPass = "http://localhost:8080";
proxyWebsockets = true;
};
};
"test.swgalaxyproject.com" = {
forceSSL = true;
useACMEHost = "test.swgalaxyproject.com";
locations."/" = {
proxyPass = "http://localhost:8080";
proxyWebsockets = true;
};
};
};
};
}