You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2014/01/06 17:45:29 UTC

svn commit: r1555909 - /httpd/httpd/branches/2.4.x/docs/manual/env.xml

Author: covener
Date: Mon Jan  6 16:45:29 2014
New Revision: 1555909

URL: http://svn.apache.org/r1555909
Log:
Merge r1555908 from trunk:

use authz_core instead of access_compat in example


Modified:
    httpd/httpd/branches/2.4.x/docs/manual/env.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/env.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/env.xml?rev=1555909&r1=1555908&r2=1555909&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/env.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/env.xml Mon Jan  6 16:45:29 2014
@@ -170,7 +170,7 @@
         <module>mod_rewrite</module>
       </modulelist>
       <directivelist>
-        <directive module="mod_access_compat">Allow</directive>
+        <directive module="mod_authz_core">Require</directive>
         <directive module="mod_log_config">CustomLog</directive>
         <directive module="mod_access_compat">Deny</directive>
         <directive module="mod_ext_filter">ExtFilterDefine</directive>
@@ -517,9 +517,7 @@ SetEnvIf Referer "^http://www\.example\.
 # Allow browsers that do not send Referer info
 SetEnvIf Referer "^$" local_referal
 &lt;Directory /web/images&gt;
-    Order Deny,Allow
-    Deny from all
-    Allow from env=local_referal
+    Require env local_referal
 &lt;/Directory&gt;
         </highlight>