From: Daniel Gruno Date: Tue, 7 May 2013 12:08:08 +0000 (+0000) Subject: Catch up with the actual modern way of allowing/denying access X-Git-Tag: 2.4.5~316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75b24f9301404e7fc0cadc91ea1495f439ab8e46;p=apache Catch up with the actual modern way of allowing/denying access git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1479873 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>