diff --git a/profiles/common-webserver/default.nix b/profiles/common-webserver/default.nix index 7033c1e..c38d51f 100644 --- a/profiles/common-webserver/default.nix +++ b/profiles/common-webserver/default.nix @@ -53,10 +53,8 @@ in { default = true; rejectSSL = true; locations."/" = { - return = ''200 "Some piece of infrastructure\n"''; - extraConfig = '' - types { } default_type "text/plain; charset=utf-8"; - ''; + # Terminate connection without response + return = ''444''; }; }; };