diff --git a/tools/make_project b/tools/make_project
index 3d7e0b8573..4156e33d74 100755
--- a/tools/make_project
+++ b/tools/make_project
@@ -324,15 +324,14 @@ print >>open(httpd_conf_template_filename,'w'), '''
# Note: projects/*/keys/ should NOT be readable!
- # in the following, "Order" and "Allow" are for Apache 2.2;
- # "Require" is for Apache 2.4
+ # in the following, the "Order" and "Allow" lines are for Apache 2.2;
+ # replace them with "Require all granted" for Apache 2.4
Options Indexes FollowSymlinks MultiViews
AllowOverride AuthConfig
Order allow,deny
Allow from all
- Require all granted
@@ -340,7 +339,6 @@ print >>open(httpd_conf_template_filename,'w'), '''
AllowOverride AuthConfig
Order allow,deny
Allow from all
- Require all granted
''' %locals()