From: Rich Bowen Date: Sat, 6 Jun 2020 18:52:53 +0000 (+0000) Subject: Remove the term blacklist from our documentation X-Git-Tag: 2.4.44~94 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3d9e8bcf01439e91ed0ef3addd205ea8d4d24759;p=thirdparty%2Fapache%2Fhttpd.git Remove the term blacklist from our documentation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1878552 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 3c4b4d96175..a1e3b11fd4b 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 0df8c22ba25..09e968ef3b3 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>