Commit 91e07807 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 1138463: mod_perl does not support Apache 2.4 directives

r=dkl a=glob
parent 154e70f3
......@@ -5,7 +5,12 @@
Deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
<IfModule mod_perl.c>
Deny from all
</IfModule>
<IfModule !mod_perl.c>
Require all denied
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......
......@@ -52,7 +52,12 @@ use constant HT_DEFAULT_DENY => <<EOT;
Deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
<IfModule mod_perl.c>
Deny from all
</IfModule>
<IfModule !mod_perl.c>
Require all denied
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......@@ -354,7 +359,12 @@ EOT
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
<IfModule mod_perl.c>
Allow from all
</IfModule>
<IfModule !mod_perl.c>
Require all granted
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......@@ -368,7 +378,12 @@ EOT
Deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
<IfModule mod_perl.c>
Deny from all
</IfModule>
<IfModule !mod_perl.c>
Require all denied
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......@@ -388,8 +403,14 @@ EOT
Deny from all
</IfVersion>
<IfVersion >= 2.4>
Require ip 192.20.225.0/24
Require all denied
<IfModule mod_perl.c>
Allow from 192.20.225.0/24
Deny from all
</IfModule>
<IfModule !mod_perl.c>
Require ip 192.20.225.0/24
Require all denied
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......@@ -405,7 +426,12 @@ EOT
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
<IfModule mod_perl.c>
Allow from all
</IfModule>
<IfModule !mod_perl.c>
Require all granted
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......@@ -419,7 +445,12 @@ EOT
Deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
<IfModule mod_perl.c>
Deny from all
</IfModule>
<IfModule !mod_perl.c>
Require all denied
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......@@ -436,7 +467,12 @@ EOT
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
<IfModule mod_perl.c>
Allow from all
</IfModule>
<IfModule !mod_perl.c>
Require all granted
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......@@ -450,7 +486,12 @@ EOT
Deny from all
</IfVersion>
<IfVersion >= 2.4>
Require all denied
<IfModule mod_perl.c>
Deny from all
</IfModule>
<IfModule !mod_perl.c>
Require all denied
</IfModule>
</IfVersion>
</IfModule>
<IfModule !mod_version.c>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment