ingress-proxy: add plapkit dev

This commit is contained in:
41666 2024-06-25 19:16:37 -04:00
parent 6f8cb649d3
commit 753d7fa6f1
3 changed files with 31 additions and 21 deletions

View file

@ -12,6 +12,7 @@
../../features/bluetooth.nix
../../features/telemetry
../../features/dns-cache.nix
../../features/nas0.nix
];
home-manager.users.noe = import ../../../home-manager/noe/hosts/cider.nix;

View file

@ -37,6 +37,7 @@ in rec {
git.servers."${tsHost "git" 3000}" = {};
staticsites.servers."${tsHost "static-sites" 80}" = {};
ldr.servers."${tsHost "live-doll-repair" 80}" = {};
plapkit-dev.servers."${tsHost "cider" 8555}" = {};
};
proxyCachePath."pdr" = {
@ -157,7 +158,15 @@ in rec {
};
locations."/media" = locations."/proxy";
} // defaultConfig // { forceSSL = false; };
"i-pk.noe.sh" = {
locations."/" = {
recommendedProxySettings = true;
proxyPass = "http://plapkit-dev";
};
} // defaultConfig;
};
};
}