[fanny] fix nginx proxy to albert
Check flake syntax / flake-check (push) Failing after 4m36s
Hydra callback / on_pr (push) Skipped
Hydra callback / on_push (push) Skipped

This commit is contained in:
2026-08-31 15:31:44 +02:00
parent 60c12ce7af
commit d659525950
+12 -3
View File
@@ -302,13 +302,22 @@ in
virtualHosts."hydra.malobeo.org" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://${hosts.malobeo.hosts.albert.network.address}:3000";
locations."/" = {
proxyPass = "http://${hosts.malobeo.hosts.albert.network.address}:3000";
extraConfig = ''
proxy_set_header Host $host;
'';
};
};
virtualHosts."cache.malobeo.org" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://${hosts.malobeo.hosts.albert.network.address}:5000";
};
locations."/" = {
proxyPass = "http://${hosts.malobeo.hosts.albert.network.address}:5000";
extraConfig = ''
proxy_set_header Host $host;
'';
};
};
services.tor = {