Please Update Your Include Files to New Regex Formatting

This commit is contained in:
Mitchell Krog 2017-07-11 11:35:10 +02:00
parent c1e9a79c58
commit b1a53770bb
4 changed files with 27 additions and 15 deletions

View file

@ -27,14 +27,14 @@
"~*amateurxpass" 1; "~*amateurxpass" 1;
"~*bigblackbooty" 1; "~*bigblackbooty" 1;
"~*blacktits" 1; "~*blacktits" 1;
"~*cookie-law-enforcement" 1; "~*cookie\-law\-enforcement" 1;
"~*free-share-buttons" 1; "~*free\-share\-buttons" 1;
"~*free-social-buttons" 1; "~*free\-social\-buttons" 1;
"~*fuck-paid-share-buttons" 1; "~*fuck\-paid\-share\-buttons" 1;
"~*ilovevitaly" 1; "~*ilovevitaly" 1;
"~*law-enforcement-bot" 1; "~*law\-enforcement\-bot" 1;
"~*law-enforcement-check" 1; "~*law\-enforcement\-check" 1;
"~*share-buttons-for-free" 1; "~*share\-buttons\-for\-free" 1;
"~*webfuck" 1; "~*webfuck" 1;
"~*xxxrus" 1; "~*xxxrus" 1;
"~*zeroredirect" 1; "~*zeroredirect" 1;

View file

@ -12,5 +12,8 @@
# first and takes precedence over anything below it. This now allows even finer control over the # first and takes precedence over anything below it. This now allows even finer control over the
# bad bot blocker. Enjoy !!! # bad bot blocker. Enjoy !!!
"~*someverybaduseragentname1" 3; # Make sure any words that contain special characters are escaped as per the Regex examples below.
"~*someverybaduseragentname2" 3;
"~*someverybaduseragentname1" 3;
"~*someverybaduseragentname2" 3;
"~*some\-very\-bad\-useragentname2" 3;

View file

@ -4,7 +4,12 @@
# This file must exist on your system or Nginx will fail a reload due to a missing file # This file must exist on your system or Nginx will fail a reload due to a missing file
# Only add one entry per line # Only add one entry per line
"~*someveryveryrandomwebsitenamethatdoesnotexist1.com" 1; # Make sure any domains have dots and special characters escaped as per the Regex examples below.
"~*someveryveryrandomwebsitenamethatdoesnotexist2.com" 1; # For example some-veryvery-randomwebsitename-thatdoesnotexist4.com should be entered as
"~*someveryveryrandomwebsitenamethatdoesnotexist3.com" 1; # some\-veryvery\-randomwebsitename\-thatdoesnotexist4\.com
"~*someveryveryrandomwebsitenamethatdoesnotexist1\.com" 1;
"~*someveryveryrandomwebsitenamethatdoesnotexist2\.com" 1;
"~*someveryveryrandomwebsitenamethatdoesnotexist3\.com" 1;
"~*some\-veryvery\-randomweb\-sitenamethatdoesnotexist4\.com" 1;

View file

@ -5,5 +5,9 @@
# Automatic updates will never be able to remove this custom list of yours # Automatic updates will never be able to remove this custom list of yours
# Add One Entry Per Line # Add One Entry Per Line
"~*myfirstowndomainname.com" 0; # Make sure any domains have dots and special characters escaped as per the Regex examples below.
"~*mysecondowndomainname.com" 0; # For example myfirstowndomainname.com should be entered as myfirstowndomainname\.com
# and my-second-owndomainname.com should be entered as my\-second\-owndomainname\.com
"~*myfirstowndomainname\.com" 0;
"~*my\-second\-owndomainname\.com" 0;