diff --git a/hosts/web-2/configuration.nix b/hosts/web-2/configuration.nix index 7367202..3998278 100644 --- a/hosts/web-2/configuration.nix +++ b/hosts/web-2/configuration.nix @@ -17,7 +17,6 @@ ./milchinsel.nix ./mitel-ommclient2.nix ./nix-install.nix - ./nogo2024.nix ./nurausstieg.nix ./ping.nix ./public.nix diff --git a/hosts/web-2/nogo2024.nix b/hosts/web-2/nogo2024.nix deleted file mode 100644 index 26c7433..0000000 --- a/hosts/web-2/nogo2024.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ pkgs, ... }: - -{ - services.nginx.virtualHosts = { - "nogo2024.clerie.de" = { - enableACME = true; - forceSSL = true; - locations."/" = { - return = "404"; - }; - locations."= /nogo2024.ics" = { - root = pkgs.fetchgit { - url = "https://git.clerie.de/clerie/nogo2024.git"; - rev = "fdc07667e6cfa09e91eaaee488528fb842a6115d"; - sha256 = "sha256-qRviw0sQnMmrkwBO0+AWnmeqZK8wXeFxZJgmLMUtzn4="; - }; - }; - }; - }; -}