From: Rich Bowen Date: Sat, 6 Jun 2020 18:52:19 +0000 (+0000) Subject: Remove the term blacklist from our documentation X-Git-Tag: 2.5.0-alpha2-ci-test-only~1398 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c3d991da630568838ce8e4670588d99bc468a2e;p=thirdparty%2Fapache%2Fhttpd.git Remove the term blacklist from our documentation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878551 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_authz_core.html.en b/docs/manual/mod/mod_authz_core.html.en index 1c4ffdf020c..a2e4fdf7d23 100644 --- a/docs/manual/mod/mod_authz_core.html.en +++ b/docs/manual/mod/mod_authz_core.html.en @@ -360,12 +360,12 @@ alias
# In this example, for both addresses to be taken into account, they MUST be enclosed
 # between quotation marks
-<AuthzProviderAlias ip blacklisted-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY">
+<AuthzProviderAlias ip reject-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY">
 </AuthzProviderAlias>
 
 <Directory "/path/to/dir">
     <RequireAll>
-        Require not blacklisted-ips
+        Require not reject-ips
         Require all granted
     </RequireAll>
 </Directory>
diff --git a/docs/manual/mod/mod_authz_core.xml b/docs/manual/mod/mod_authz_core.xml index 032fb954fa5..c92d1e7eb32 100644 --- a/docs/manual/mod/mod_authz_core.xml +++ b/docs/manual/mod/mod_authz_core.xml @@ -607,12 +607,12 @@ alias # In this example, for both addresses to be taken into account, they MUST be enclosed # between quotation marks -<AuthzProviderAlias ip blacklisted-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY"> +<AuthzProviderAlias ip reject-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY"> </AuthzProviderAlias> <Directory "/path/to/dir"> <RequireAll> - Require not blacklisted-ips + Require not reject-ips Require all granted </RequireAll> </Directory>