This commit is contained in:
Shelvacu
2024-12-09 10:32:41 -08:00
committed by Shelvacu on legtop
parent 547e94ed4f
commit c189fe43bf
2 changed files with 8 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ let
"jean-luc.org"
"pwrhs.win"
"jf.finaltask.xyz"
"shelvacu.miras.pet"
];
proxied = lib.pipe config.vacu.proxiedServices [
lib.attrValues

View File

@@ -2,11 +2,16 @@
...
}:
{
vacu.proxiedServices.static-stuff = {
vacu.proxiedServices.static-stuff-tulpaudcast = {
domain = "tulpaudcast.jean-luc.org";
fromContainer = "static-stuff";
port = 80;
};
vacu.proxiedServices.static-stuff-mira = {
domain = "shelvacu.miras.pet";
fromContainer = "static-stuff";
port = 80;
};
systemd.tmpfiles.settings.asdf."/trip/static-stuff".d = {
mode = "0744";
@@ -32,6 +37,7 @@
services.nginx.enable = true;
services.nginx.virtualHosts."tulpaudcast.jean-luc.org".root =
"/static-stuff/tulpaudcast.jean-luc.org";
services.nginx.virtualHosts."shelvcu.miras.pet".extraConfig = ''return "I don't know what to put here";'';
};
};
}