diff --git a/machines/durruti/host_config.nix b/machines/durruti/host_config.nix index d10cace..baed816 100644 --- a/machines/durruti/host_config.nix +++ b/machines/durruti/host_config.nix @@ -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" = { forceSSL = 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"; - }; }; }