diff --git a/hosts/cirrus/ddix.nix b/hosts/cirrus/ddix.nix deleted file mode 100644 index b33e096..0000000 --- a/hosts/cirrus/ddix.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ config, ... }: { - services.nginx.virtualHosts = { - "dd-ix.net" = { - enableACME = true; - forceSSL = true; - locations."/" = { - extraConfig = '' - return 307 https://c3d2.de; - ''; - }; - }; - "www.dd-ix.net" = { - enableACME = true; - forceSSL = true; - locations."/" = { - extraConfig = '' - return 307 https://c3d2.de; - ''; - }; - }; - }; -}