From d0688e7b33f3c95d49643c74091fd121bcefb546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20St=C3=BCbinger?= Date: Sun, 21 Feb 2021 12:47:28 +0100 Subject: [PATCH] remove webroot for turn.hacc.space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit turn.hacc.space is only there to server acme challanges, it doesn't need to actually serve files — just the default nginx page is fine. --- hosts/hainich/services/workadventure.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/hosts/hainich/services/workadventure.nix b/hosts/hainich/services/workadventure.nix index 650213a..343b09f 100644 --- a/hosts/hainich/services/workadventure.nix +++ b/hosts/hainich/services/workadventure.nix @@ -87,7 +87,6 @@ in # this isn't actually needed, but acme requires a webserver to serve # challanges, so I guess it's easier to just define a virtualHost here virtualHosts."turn.hacc.space" = { - root = "/var/turn-www"; # do we need this, or can acme do with a 404? enableACME = true; forceSSL = true; };