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-Tag: 2.5.0-alpha~5491 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c488610df1040fa293075b0ad51fc8dc2f44d2ca;p=apache 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 efa1f8f7fd..79b25c6d9a 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>