From 8e43e4db394158442ae3d157f97843cd453c1135 Mon Sep 17 00:00:00 2001 From: clerie Date: Wed, 20 Nov 2024 22:23:22 +0100 Subject: [PATCH] hosts/web-2: Remove nogo2024.clerie.de --- hosts/web-2/configuration.nix | 1 - hosts/web-2/nogo2024.nix | 20 -------------------- 2 files changed, 21 deletions(-) delete mode 100644 hosts/web-2/nogo2024.nix 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="; - }; - }; - }; - }; -}