diff --git a/nixos/hosts/ingress-proxy/default.nix b/nixos/hosts/ingress-proxy/default.nix index 2a66ad2..a40fe05 100644 --- a/nixos/hosts/ingress-proxy/default.nix +++ b/nixos/hosts/ingress-proxy/default.nix @@ -44,11 +44,11 @@ enableACME = true; }; - virtualHosts = map (x: - lib.nameValuePair - x.host - ({ locations."/".proxyPass = x.target; } // proxyConfig // x.extra) - ) routes; + virtualHosts = { + "m.la.mekanoe.com" = { + location."/".proxyPass = tsHost "lab-alpha"; + } // proxyConfig; + }; in { imports = [ ../../templates/proxmox-lxc.nix