From c488610df1040fa293075b0ad51fc8dc2f44d2ca Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Tue, 7 May 2013 12:07:03 +0000 Subject: [PATCH] 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 --- docs/manual/misc/security_tips.xml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) 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> -- 2.50.1