Merge branch 'main' of git.hoki-porgy.ts.net:noe/nixos

This commit is contained in:
41666 2024-06-25 19:35:05 -04:00
commit 91426f135f
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

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