From: Daniel Gruno <humbedooh@apache.org>
Date: Tue, 7 May 2013 13:23:44 +0000 (+0000)
Subject: bring perf scaling into the 21st century (s/allow from all/require all granted/).
X-Git-Tag: 2.5.0-alpha~5489
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7ba13cd42e84b1d04ea37c9b91a003df59e09bb;p=apache

bring perf scaling into the 21st century (s/allow from all/require all granted/).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1479900 13f79535-47bb-0310-9956-ffa450edef68
---

diff --git a/docs/manual/misc/perf-scaling.xml b/docs/manual/misc/perf-scaling.xml
index 92794e832f..2f5d2db996 100644
--- a/docs/manual/misc/perf-scaling.xml
+++ b/docs/manual/misc/perf-scaling.xml
@@ -1291,8 +1291,7 @@ Listen *:8001
       &lt;Directory
       "/home/sctemme/inst/blog/httpd/htdocs"&gt;
           Options +Indexes
-          Order allow,deny
-          Allow from all
+          Require all granted
           RewriteEngine on
           RewriteCond %{REQUEST_FILENAME} !-f
           RewriteCond %{REQUEST_FILENAME} !-d
@@ -1306,8 +1305,7 @@ Listen *:8001
       ScriptAlias /cgi-bin/ /home/sctemme/inst/blog/bin/
       &lt;Directory "/home/sctemme/inst/blog/bin"&gt;
           Options +ExecCGI
-          Order allow,deny
-          Allow from all
+          Require all granted
       &lt;/Directory&gt;
   &lt;/VirtualHost&gt;
 </highlight>