feat(cluster): enable webUI
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-03-10 20:04:04 -04:00
parent e7f4628aaa
commit 8b4ddb2c2b
3 changed files with 14 additions and 3 deletions

View file

@ -37,9 +37,9 @@ in {
"nelim.org" = { "nelim.org" = {
serverAliases = ["*.nelim.org"]; serverAliases = ["*.nelim.org"];
extraConfig = '' extraConfig = ''
tls { tls {
dns cloudflare {$CLOUDFLARE_API_TOKEN} dns cloudflare {$CLOUDFLARE_API_TOKEN}
resolvers 1.0.0.1 resolvers 1.0.0.1
} }
''; '';
@ -50,6 +50,16 @@ in {
headscale.reverseProxy = "${clusterIP}:8085"; headscale.reverseProxy = "${clusterIP}:8085";
jelly.reverseProxy = "${nosIP}:8097"; jelly.reverseProxy = "${nosIP}:8097";
pcsd = {
extraConfig = ''
reverse_proxy https://${clusterIP}:2224 {
transport http {
tls_insecure_skip_verify
}
}
'';
};
# Resume builder # Resume builder
resume.reverseProxy = "${nosIP}:3060"; resume.reverseProxy = "${nosIP}:3060";
resauth.reverseProxy = "${nosIP}:3100"; resauth.reverseProxy = "${nosIP}:3100";

View file

@ -18,6 +18,7 @@ in {
services.pcsd = { services.pcsd = {
enable = true; enable = true;
enableBinaryCache = true; enableBinaryCache = true;
enableWebUI = true;
clusterName = "thingies"; clusterName = "thingies";

Binary file not shown.