[albert] move proxy to fanny
Check flake syntax / flake-check (push) Successful in 12m1s
Hydra callback / on_pr (push) Skipped
Hydra callback / on_push (push) Skipped

also add the cache location
This commit is contained in:
2026-08-29 21:14:58 +02:00
parent 59ce9e1c94
commit 103c7730be
3 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ in
networking = { networking = {
firewall = { firewall = {
allowedTCPPorts = [ 80 443 3000 ]; allowedTCPPorts = [ 80 443 3000 5000];
}; };
}; };
-6
View File
@@ -95,11 +95,5 @@
"git+ssh://git.dynamicdiscord.de/" "git+ssh://git.dynamicdiscord.de/"
"https://git.dynamicdiscord.de" "https://git.dynamicdiscord.de"
]; ];
services.nginx.virtualHosts."hydra.malobeo.org" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:3000";
};
} }
+11
View File
@@ -298,6 +298,17 @@ in
''; '';
}; };
}; };
virtualHosts."hydra.malobeo.org" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://${hosts.malobeo.hosts.albert.network.address}:3000";
};
virtualHosts."cache.malobeo.org" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://${hosts.malobeo.hosts.albert.network.address}:5000";
};
}; };
services.tor = { services.tor = {