Skip to content

Commit ccc6111

Browse files
committed
Removed the words "whitelist", "blacklist" from examples in code and readme
1 parent 78adcf2 commit ccc6111

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v1.1.1
4+
5+
- Removed the words "whitelist", "blacklist" from examples in code and readme
6+
7+
38
## v1.1.0
49

510
- Removed single instance check

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Automatic CDN and bogon IP list updater for firewall and server configurations
44

55
* Downloads IP lists to update firewall and server configurations
6-
* Downloads bogon IP lists to blacklist in firewalls
7-
* Downloads CDN/trusted proxy/reverse proxy IP ranges to whitelist in firewalls, update server configurations
6+
* Downloads bogon IP lists to block by firewalls
7+
* Downloads CDN/trusted proxy/reverse proxy IP ranges to allow in firewalls, update server configurations
88
* Supports Ipset/Iptables mode, Nginx ngx_http_realip_module, Apache mod_remoteip module, raw mode (for any firewall, server or daemon)
99
* Supports many input files with "IP address/netmask" format including raw IP lists, jsonp, xml, etc...
1010
* Downloads multiple lists and merge
@@ -89,7 +89,7 @@ Doing some magic with bash and raw list. /etc/myscript.sh contents:
8989

9090
### Examples (ipset mode)
9191

92-
This example demonstrates how to whitelist your CDN/reverse proxy IP range through ipset and iptables.
92+
This example demonstrates how to allow your CDN/reverse proxy IP range through ipset and iptables.
9393

9494
Create a proxylist set, create iptables rule to accept proxylist set for http/https ports, add Cloudflare IPv4 range to proxylist set.
9595

ip-list-updater.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ static function help( $long = false ) {
161161
. "\$ " . self::$app_name . ".php -u -m raw -x 4 -o \"/etc/ip-list-updater.txt\" -s \"cloudflare\" -c \"/etc/myscript.sh\" \n"
162162
. "\$ " . self::$app_name . ".php --update --mode=\"raw\" --ipv=4 --output=\"/etc/ip-list-updater.txt\" --sources=\"https://www.cloudflare.com/ips-v4\" --success=\"/etc/myscript.sh\"\n"
163163
. "\nExamples (ipset mode):\n"
164-
. "\$ " . self::$app_name . ".php --update --mode=\"ipset\" --setname=\"whitelist\" --ipv=4 --output=\"/etc/whitelist.txt\" --sources=\"cloudflare\"\n"
164+
. "\$ " . self::$app_name . ".php --update --mode=\"ipset\" --setname=\"allowlist\" --ipv=4 --output=\"/etc/allowlist.txt\" --sources=\"cloudflare\"\n"
165165
. "\$ " . self::$app_name . ".php --update --mode=\"ipset\" --setname=\"bogonlist\" --ipv=4 --output=\"/etc/bogonlist.txt\" --sources=\"spamhaus\"\n"
166166
. "\nExamples (nginx mode):\n"
167167
. "\$ " . self::$app_name . ".php --update --mode=\"nginx\" --ipv=4 --output=\"/etc/nginx-cloudflare.conf\" --sources=\"cloudflare\" --success=\"/usr/bin/nginx -s reload\"\n"

0 commit comments

Comments
 (0)