You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2020/06/06 18:52:20 UTC

svn commit: r1878551 - in /httpd/httpd/trunk/docs/manual/mod: mod_authz_core.html.en mod_authz_core.xml

Author: rbowen
Date: Sat Jun  6 18:52:19 2020
New Revision: 1878551

URL: http://svn.apache.org/viewvc?rev=1878551&view=rev
Log:
Remove the term blacklist from our documentation

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_authz_core.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_authz_core.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authz_core.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authz_core.html.en?rev=1878551&r1=1878550&r2=1878551&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authz_core.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authz_core.html.en Sat Jun  6 18:52:19 2020
@@ -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>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authz_core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authz_core.xml?rev=1878551&r1=1878550&r2=1878551&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authz_core.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authz_core.xml Sat Jun  6 18:52:19 2020
@@ -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;