Run Whitelisting Test

This commit is contained in:
Mitchell Krog 2019-06-22 15:30:52 +02:00
parent d6e6fc6004
commit 05618f24ba
No known key found for this signature in database
GPG key ID: C243C388553EDE5D

View file

@ -114,6 +114,25 @@ map $http_user_agent $bad_bot {
default 0;
# ***********************************************
# Include your Own Custom List of Bad User Agents
# ***********************************************
# Use the include file below to further customize your own list of additional user-agents you wish to permanently block
# ***********************************************************************************
# START CUSTOM BLACKLISTED USER AGENTS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
# ***********************************************************************************
include /etc/nginx/bots.d/blacklist-user-agents.conf;
# *********************************************************************************
# END CUSTOM BLACKLISTED USER AGENTS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
# *********************************************************************************
# *********************************************
# Bad User-Agent Strings That We Block Outright
@ -770,24 +789,6 @@ map $http_user_agent $bad_bot {
"~*\bYandexImages\b" 2;
# END LIMITED BOTS ### DO NOT EDIT THIS LINE AT ALL ###
# ***********************************************
# Include your Own Custom List of Bad User Agents
# ***********************************************
# Use the include file below to further customize your own list of additional user-agents you wish to permanently block
# ***********************************************************************************
# START CUSTOM BLACKLISTED USER AGENTS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
# ***********************************************************************************
include /etc/nginx/bots.d/blacklist-user-agents.conf;
# *********************************************************************************
# END CUSTOM BLACKLISTED USER AGENTS ### DO NOT EDIT OR REMOVE THIS LINE AT ALL ###
# *********************************************************************************
}