mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
24 lines
597 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|