From e8884cc31a098b739d446402257e2b2a9608b94e Mon Sep 17 00:00:00 2001 From: Mitchell Krog Date: Wed, 2 Dec 2020 09:33:49 +0200 Subject: [PATCH] Update comments > blockbots.conf > Response Code REF: #409 --- bots.d/blockbots.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bots.d/blockbots.conf b/bots.d/blockbots.conf index 5ad118e40..1c89847bb 100644 --- a/bots.d/blockbots.conf +++ b/bots.d/blockbots.conf @@ -56,7 +56,7 @@ limit_conn bot2_connlimit 10; limit_req zone=bot2_reqlimitip burst=10; if ($bad_bot = '3') { - return 444; + return 444; # << Response Code Issued May Be Modified to Whatever you Choose ie. 404 but 444 wastes less of Nginxs time } # --------------------- @@ -64,7 +64,7 @@ if ($bad_bot = '3') { # --------------------- if ($bad_words) { - return 444; + return 444; # << Response Code Issued May Be Modified to Whatever you Choose ie. 404 but 444 wastes less of Nginxs time } # ------------------ @@ -72,7 +72,7 @@ if ($bad_words) { # ------------------ if ($bad_referer) { - return 444; + return 444; # << Response Code Issued May Be Modified to Whatever you Choose ie. 404 but 444 wastes less of Nginxs time } # ----------------------------- @@ -80,6 +80,6 @@ if ($bad_referer) { # ----------------------------- if ($validate_client) { - return 444; + return 444; # << Response Code Issued May Be Modified to Whatever you Choose ie. 404 but 444 wastes less of Nginxs time }