From: Daniel Gruno 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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21003d443408b69ae6c82de7aef81c68a7b2420c;p=thirdparty%2Fapache%2Fhttpd.git 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 92794e832f1..2f5d2db996e 100644 --- a/docs/manual/misc/perf-scaling.xml +++ b/docs/manual/misc/perf-scaling.xml @@ -1291,8 +1291,7 @@ Listen *:8001 <Directory "/home/sctemme/inst/blog/httpd/htdocs"> 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/ <Directory "/home/sctemme/inst/blog/bin"> Options +ExecCGI - Order allow,deny - Allow from all + Require all granted </Directory> </VirtualHost>