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 2011/02/16 13:19:59 UTC

svn commit: r1071221 - in /httpd/httpd/trunk/docs/manual/mod: core.html.en core.xml mod_authn_anon.html.en mod_authn_anon.xml mod_authz_core.html.en mod_ldap.html.en mod_ldap.xml

Author: rbowen
Date: Wed Feb 16 12:19:59 2011
New Revision: 1071221

URL: http://svn.apache.org/viewvc?rev=1071221&view=rev
Log:
Removes more instances of 'allow from' and 'deny from' syntax. I think
that's the last of them.

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

Modified: httpd/httpd/trunk/docs/manual/mod/core.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.html.en?rev=1071221&r1=1071220&r2=1071221&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.html.en Wed Feb 16 12:19:59 2011
@@ -735,7 +735,7 @@ named file-system directory, sub-directo
     be applied.</p>
 
    <p><strong>Note that the default access for
-    <code>&lt;Directory /&gt;</code> is <code>Allow from All</code>.
+    <code>&lt;Directory /&gt;</code> is to permit all access.
     This means that Apache httpd will serve any file mapped from an URL. It is
     recommended that you change this with a block such
     as</strong></p>
@@ -743,8 +743,7 @@ named file-system directory, sub-directo
     <div class="example"><p><code>
       &lt;Directory /&gt;<br />
       <span class="indent">
-        Order Deny,Allow<br />
-        Deny from All<br />
+        Require all denied<br />
       </span>
       &lt;/Directory&gt;
     </code></p></div>

Modified: httpd/httpd/trunk/docs/manual/mod/core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.xml?rev=1071221&r1=1071220&r2=1071221&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.xml Wed Feb 16 12:19:59 2011
@@ -682,7 +682,7 @@ named file-system directory, sub-directo
     be applied.</p>
 
    <p><strong>Note that the default access for
-    <code>&lt;Directory /&gt;</code> is <code>Allow from All</code>.
+    <code>&lt;Directory /&gt;</code> is to permit all access.
     This means that Apache httpd will serve any file mapped from an URL. It is
     recommended that you change this with a block such
     as</strong></p>
@@ -690,8 +690,7 @@ named file-system directory, sub-directo
     <example>
       &lt;Directory /&gt;<br />
       <indent>
-        Order Deny,Allow<br />
-        Deny from All<br />
+        Require all denied<br />
       </indent>
       &lt;/Directory&gt;
     </example>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en?rev=1071221&r1=1071220&r2=1071221&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.html.en Wed Feb 16 12:19:59 2011
@@ -104,8 +104,7 @@
         Anonymous_LogEmail on<br />
         Anonymous anonymous guest www test welcome<br />
         <br />
-        Order Deny,Allow<br />
-        Allow from all<br />
+        Require all granted<br />
         <br />
         Require valid-user<br />
       </span>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml?rev=1071221&r1=1071220&r2=1071221&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_authn_anon.xml Wed Feb 16 12:19:59 2011
@@ -94,8 +94,7 @@
         Anonymous_LogEmail on<br />
         Anonymous anonymous guest www test welcome<br />
         <br />
-        Order Deny,Allow<br />
-        Allow from all<br />
+        Require all granted<br />
         <br />
         Require valid-user<br />
       </indent>

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=1071221&r1=1071220&r2=1071221&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 Wed Feb 16 12:19:59 2011
@@ -95,8 +95,7 @@
           Alias /secure /webpages/secure<br />
           &lt;Directory /webpages/secure&gt;<br />
           <span class="indent">
-             Order deny,allow<br />
-             Allow from all<br /><br />
+             Require all granted<br /><br />
         
              AuthBasicProvider file<br /><br />
         

Modified: httpd/httpd/trunk/docs/manual/mod/mod_ldap.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_ldap.html.en?rev=1071221&r1=1071220&r2=1071221&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_ldap.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_ldap.html.en Wed Feb 16 12:19:59 2011
@@ -104,9 +104,9 @@ by other LDAP modules</td></tr>
       &lt;Location /ldap-status&gt;<br />
       <span class="indent">
         SetHandler ldap-status<br />
-        Order deny,allow<br />
-        Deny from all<br />
-        Allow from yourdomain.example.com<br />
+
+        Require host yourdomain.example.com<br />
+
         Satisfy any<br />
         AuthType Basic<br />
         AuthName "LDAP Protected"<br />
@@ -247,9 +247,9 @@ by other LDAP modules</td></tr>
       &lt;Location /ldap-status&gt;<br />
       <span class="indent">
         SetHandler ldap-status<br />
-        Order deny,allow<br />
-        Deny from all<br />
-        Allow from yourdomain.example.com<br />
+
+        Require host yourdomain.example.com<br />
+
         Satisfy any<br />
         AuthType Basic<br />
         AuthName "LDAP Protected"<br />
@@ -270,9 +270,9 @@ by other LDAP modules</td></tr>
       &lt;Location /ldap-status&gt;<br />
       <span class="indent">
         SetHandler ldap-status<br />
-        Order deny,allow<br />
-        Deny from all<br />
-        Allow from yourdomain.example.com<br />
+
+        Require host yourdomain.example.com<br />
+
         Satisfy any<br />
         AuthType Basic<br />
         AuthName "LDAP Protected"<br />
@@ -324,9 +324,9 @@ by other LDAP modules</td></tr>
             &lt;Location /ldap-status&gt;<br />
             <span class="indent">
                 SetHandler ldap-status<br />
-                Order deny,allow<br />
-                Deny from all<br />
-                Allow from yourdomain.example.com<br />
+
+                Require host yourdomain.example.com<br />
+
                 Satisfy any<br />
                 AuthType Basic<br />
                 AuthName "LDAP Protected"<br />
@@ -395,9 +395,9 @@ by other LDAP modules</td></tr>
             &lt;Location /ldap-status&gt;<br />
             <span class="indent">
                 SetHandler ldap-status<br />
-                Order deny,allow<br />
-                Deny from all<br />
-                Allow from yourdomain.example.com<br />
+
+                Require host yourdomain.example.com<br />
+
                 LDAPTrustedClientCert CERT_BASE64 /certs/cert1.pem<br />
                 LDAPTrustedClientCert KEY_BASE64 /certs/key1.pem<br />
                 # CA certs respecified due to per-directory client certs<br />

Modified: httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml?rev=1071221&r1=1071220&r2=1071221&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_ldap.xml Wed Feb 16 12:19:59 2011
@@ -76,9 +76,9 @@ by other LDAP modules</description>
       &lt;Location /ldap-status&gt;<br />
       <indent>
         SetHandler ldap-status<br />
-        Order deny,allow<br />
-        Deny from all<br />
-        Allow from yourdomain.example.com<br />
+
+        Require host yourdomain.example.com<br />
+
         Satisfy any<br />
         AuthType Basic<br />
         AuthName "LDAP Protected"<br />
@@ -221,9 +221,9 @@ by other LDAP modules</description>
       &lt;Location /ldap-status&gt;<br />
       <indent>
         SetHandler ldap-status<br />
-        Order deny,allow<br />
-        Deny from all<br />
-        Allow from yourdomain.example.com<br />
+
+        Require host yourdomain.example.com<br />
+
         Satisfy any<br />
         AuthType Basic<br />
         AuthName "LDAP Protected"<br />
@@ -244,9 +244,9 @@ by other LDAP modules</description>
       &lt;Location /ldap-status&gt;<br />
       <indent>
         SetHandler ldap-status<br />
-        Order deny,allow<br />
-        Deny from all<br />
-        Allow from yourdomain.example.com<br />
+
+        Require host yourdomain.example.com<br />
+
         Satisfy any<br />
         AuthType Basic<br />
         AuthName "LDAP Protected"<br />
@@ -298,9 +298,9 @@ by other LDAP modules</description>
             &lt;Location /ldap-status&gt;<br />
             <indent>
                 SetHandler ldap-status<br />
-                Order deny,allow<br />
-                Deny from all<br />
-                Allow from yourdomain.example.com<br />
+
+                Require host yourdomain.example.com<br />
+
                 Satisfy any<br />
                 AuthType Basic<br />
                 AuthName "LDAP Protected"<br />
@@ -369,9 +369,9 @@ by other LDAP modules</description>
             &lt;Location /ldap-status&gt;<br />
             <indent>
                 SetHandler ldap-status<br />
-                Order deny,allow<br />
-                Deny from all<br />
-                Allow from yourdomain.example.com<br />
+
+                Require host yourdomain.example.com<br />
+
                 LDAPTrustedClientCert CERT_BASE64 /certs/cert1.pem<br />
                 LDAPTrustedClientCert KEY_BASE64 /certs/key1.pem<br />
                 # CA certs respecified due to per-directory client certs<br />