From 4b23e72a677f224095e5330475d6588f5054f0ef Mon Sep 17 00:00:00 2001 From: twoneis Date: Fri, 7 Feb 2025 17:27:44 +0100 Subject: [PATCH] correct status code on not found --- modules/nginx/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nginx/default.nix b/modules/nginx/default.nix index 478a06b..e304bda 100644 --- a/modules/nginx/default.nix +++ b/modules/nginx/default.nix @@ -10,7 +10,7 @@ in mkIf conf.nginx.enable { forceSSL = false; locations = { "/" = { - return = "200 \"nonexistent faggot\""; + return = "404"; }; }; };