mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-01 18:19:55 +00:00
New Feature (Step 1): Add new blacklist-domains.conf include file.
- FEATURE NOT IN OPERATION YET - This is to test that update-ngblocker safely pulls new include file during update to avoid any Nginx EMERG errors once the feature is introduced into the globalblacklist.conf file.
This commit is contained in:
parent
c9533fef7f
commit
0a5376547c
2 changed files with 38 additions and 5 deletions
32
bots.d/blacklist-domains.conf
Normal file
32
bots.d/blacklist-domains.conf
Normal file
|
@ -0,0 +1,32 @@
|
|||
# EDIT THIS FILE AS YOU LIKE TO BLACKLIST YOUR OWN CUSTOM DOMAIN NAMES ###
|
||||
|
||||
### VERSION INFORMATION #
|
||||
###################################################
|
||||
### Version: V3.2017.01
|
||||
### Updated: Fri Sep 22 09:57:32 SAST 2017
|
||||
###################################################
|
||||
### VERSION INFORMATION ##
|
||||
|
||||
##############################################################################
|
||||
# _ __ _ #
|
||||
# / |/ /__ _(_)__ __ __ #
|
||||
# / / _ `/ / _ \\ \ / #
|
||||
# /_/|_/\_, /_/_//_/_\_\ #
|
||||
# __/___/ __ ___ __ ___ __ __ #
|
||||
# / _ )___ ____/ / / _ )___ / /_ / _ )/ /__ ____/ /_____ ____ #
|
||||
# / _ / _ `/ _ / / _ / _ \/ __/ / _ / / _ \/ __/ '_/ -_) __/ #
|
||||
# /____/\_,_/\_,_/ /____/\___/\__/ /____/_/\___/\__/_/\_\\__/_/ #
|
||||
# #
|
||||
##############################################################################
|
||||
|
||||
# Add One Entry Per Line - List all your own extra domains you want to blacklist.
|
||||
# This file must exist on your system or Nginx will fail a reload due to a missing file
|
||||
# Automatic updates will never be able to remove this custom list of yours
|
||||
# Add One Entry Per Line
|
||||
|
||||
# Make sure any domains have dots and special characters escaped as per the Regex examples below.
|
||||
# For example myblacklisteddomainname.com should be entered as myfirstowndomainname\.com
|
||||
# and my-second-blacklisted.com should be entered as my\-second\-owndomainname\.com
|
||||
|
||||
"~*myblacklisteddomainname\.com" 1;
|
||||
"~*my\-second\-blacklisted\.com" 1;
|
|
@ -23,12 +23,13 @@ CONF_FILES="
|
|||
BOT_FILES="
|
||||
blockbots.conf
|
||||
ddos.conf
|
||||
whitelist-ips.conf
|
||||
whitelist-domains.conf
|
||||
blacklist-user-agents.conf
|
||||
blacklist-ips.conf
|
||||
bad-referrer-words.conf
|
||||
custom-bad-referrers.conf
|
||||
bad-referrer-words.conf
|
||||
blacklist-domains.conf
|
||||
blacklist-ips.conf
|
||||
blacklist-user-agents.conf
|
||||
whitelist-domains.conf
|
||||
whitelist-ips.conf
|
||||
"
|
||||
|
||||
VHOST_INCLUDES="
|
||||
|
|
Loading…
Add table
Reference in a new issue