You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2013/05/07 15:28:30 UTC

svn commit: r1479903 - /httpd/httpd/branches/2.4.x/docs/manual/misc/security_tips.xml.fr

Author: humbedooh
Date: Tue May  7 13:28:29 2013
New Revision: 1479903

URL: http://svn.apache.org/r1479903
Log:
update french translation to reflect the current auth syntax

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/misc/security_tips.xml.fr

Modified: httpd/httpd/branches/2.4.x/docs/manual/misc/security_tips.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/misc/security_tips.xml.fr?rev=1479903&r1=1479902&r2=1479903&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/misc/security_tips.xml.fr (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/misc/security_tips.xml.fr Tue May  7 13:28:29 2013
@@ -371,8 +371,7 @@
 
     <highlight language="config">
 &lt;Directory /&gt;
-    Order Deny,Allow
-    Deny from all
+    Require all denied
 &lt;/Directory&gt;
     </highlight>
 
@@ -383,12 +382,10 @@
 
     <highlight language="config">
 &lt;Directory /usr/users/*/public_html&gt;
-    Order Deny,Allow
-    Allow from all
+    Require all granted
 &lt;/Directory&gt;
 &lt;Directory /usr/local/httpd&gt;
-    Order Deny,Allow
-    Allow from all
+    Require all granted
 &lt;/Directory&gt;
     </highlight>
 
@@ -453,8 +450,7 @@
 
     <highlight language="config">
 &lt;Files ".ht*"&gt;
-    Order allow,deny
-    Deny from all
+    Require all denied
 &lt;/Files&gt;
     </highlight>