Merge pull request #187 from louis-haddrell/master

Replaced Apache 2.4 syntax in RedHat Apache 2.2 config (fixes #115)
This commit is contained in:
Niels Abspoel 2017-08-01 23:20:11 +02:00 committed by GitHub
commit b6dbc87844

View File

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