]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove the term blacklist from our documentation
authorRich Bowen <rbowen@apache.org>
Sat, 6 Jun 2020 18:52:53 +0000 (18:52 +0000)
committerRich Bowen <rbowen@apache.org>
Sat, 6 Jun 2020 18:52:53 +0000 (18:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1878552 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_authz_core.html.en
docs/manual/mod/mod_authz_core.xml

index 3c4b4d9617554b092f454978b700c0e9d5c146e8..a1e3b11fd4b14b2043539f01a2821ccae042181b 100644 (file)
@@ -360,12 +360,12 @@ alias</td></tr>
     
     <pre class="prettyprint lang-config"># In this example, for both addresses to be taken into account, they MUST be enclosed
 # between quotation marks
-&lt;AuthzProviderAlias ip blacklisted-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY"&gt;
+&lt;AuthzProviderAlias ip reject-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY"&gt;
 &lt;/AuthzProviderAlias&gt;
 
 &lt;Directory "/path/to/dir"&gt;
     &lt;RequireAll&gt;
-        Require not blacklisted-ips
+        Require not reject-ips
         Require all granted
     &lt;/RequireAll&gt;
 &lt;/Directory&gt;</pre>
index 0df8c22ba257272da5ddca08998e489b9d430a29..09e968ef3b3ce8a3678f0a7f09a771a25a79f0dc 100644 (file)
@@ -607,12 +607,12 @@ alias</description>
     <highlight language="config">
 # In this example, for both addresses to be taken into account, they MUST be enclosed
 # between quotation marks
-&lt;AuthzProviderAlias ip blacklisted-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY"&gt;
+&lt;AuthzProviderAlias ip reject-ips "XXX.XXX.XXX.XXX YYY.YYY.YYY.YYY"&gt;
 &lt;/AuthzProviderAlias&gt;
 
 &lt;Directory "/path/to/dir"&gt;
     &lt;RequireAll&gt;
-        Require not blacklisted-ips
+        Require not reject-ips
         Require all granted
     &lt;/RequireAll&gt;
 &lt;/Directory&gt;