Replaced Apache 2.4 syntax in RedHat Apache 2.2 config (fixes #115)

This commit is contained in:
Louis Haddrell 2017-08-01 15:34:06 +01:00
parent 1feaf1f392
commit 7e96ce8d3e

View File

@ -167,7 +167,8 @@ ServerAdmin root@localhost
#
<Directory />
AllowOverride none
Require all denied
Order deny,allow
Deny from all
</Directory>
#
@ -190,7 +191,8 @@ DocumentRoot "/var/www/html"
<Directory "/var/www">
AllowOverride None
# Allow open access:
Require all granted
Order allow,deny
Allow from all
</Directory>
# Further relax access to the default document root:
@ -219,7 +221,8 @@ DocumentRoot "/var/www/html"
#
# Controls who can get stuff from this server.
#
Require all granted
Order allow,deny
Allow from all
</Directory>
#
@ -235,7 +238,8 @@ DocumentRoot "/var/www/html"
# viewed by Web clients.
#
<Files ".ht*">
Require all denied
Order deny,allow
Deny from all
</Files>
#
@ -324,7 +328,8 @@ LogLevel warn
<Directory "/var/www/cgi-bin">
AllowOverride None
Options None
Require all granted
Order allow,deny
Allow from all
</Directory>
<IfModule mime_module>