From: Daniel Gruno Date: Tue, 7 May 2013 12:07:03 +0000 (+0000) Subject: Catch up with the actual modern way of allowing/denying access X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e9e19c919da02ee99e8dd0e1c532df6e7d4f196;p=thirdparty%2Fapache%2Fhttpd.git Catch up with the actual modern way of allowing/denying access git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1479872 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/security_tips.xml b/docs/manual/misc/security_tips.xml index efa1f8f7fda..79b25c6d9a9 100644 --- a/docs/manual/misc/security_tips.xml +++ b/docs/manual/misc/security_tips.xml @@ -360,8 +360,7 @@ <Directory /> - Order Deny,Allow - Deny from all + Require all denied </Directory> @@ -371,12 +370,10 @@ <Directory /usr/users/*/public_html> - Order Deny,Allow - Allow from all + Require all granted </Directory> <Directory /usr/local/httpd> - Order Deny,Allow - Allow from all + Require all granted </Directory> @@ -438,8 +435,7 @@ <Files ".ht*"> - Order allow,deny - Deny from all + Require all denied </Files>