[host] proxy_pass tasklist
All checks were successful
Check flake syntax / flake-check (push) Successful in 4m36s

This commit is contained in:
2025-01-22 00:52:38 +01:00
parent d98dae86f7
commit 8db42cc437

View File

@@ -63,6 +63,17 @@ in
}; };
}; };
services.nginx.virtualHosts."tasklist.malobeo.org" = {
forceSSL = true;
enableACME= true;
locations."/" = {
proxyPass = "http://10.0.0.10";
extraConfig = ''
'';
};
};
services.nginx.virtualHosts."status.malobeo.org" = { services.nginx.virtualHosts."status.malobeo.org" = {
forceSSL = true; forceSSL = true;
enableACME= true; enableACME= true;
@@ -72,11 +83,5 @@ in
''; '';
}; };
}; };
services.nginx.virtualHosts."tasklist.malobeo.org" = {
forceSSL = true;
enableACME= true;
locations."/".proxyPass = "http://${cfg.host_ip}:8080";
};
}; };
} }