summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Filesystem.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-02-20 12:58:46 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2015-02-20 12:58:46 +0100
commit638dc6564b1aefe8dc2bca1c1511d6ddd37cad81 (patch)
tree318eb6185b3bb5ec07ac6ed36916122b22d22ab2 /Bugzilla/Install/Filesystem.pm
parent720e7d4f84a0706cbb4e41c4df8ea29373a50c27 (diff)
downloadbugzilla-638dc6564b1aefe8dc2bca1c1511d6ddd37cad81.tar.gz
bugzilla-638dc6564b1aefe8dc2bca1c1511d6ddd37cad81.tar.xz
Bug 1133690: .htaccess incorrectly assumes that Apache 2.2.x can read new 2.4 directives
r=dkl a=glob
Diffstat (limited to 'Bugzilla/Install/Filesystem.pm')
-rw-r--r--Bugzilla/Install/Filesystem.pm33
1 files changed, 17 insertions, 16 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm
index f28d6699b..5f5677460 100644
--- a/Bugzilla/Install/Filesystem.pm
+++ b/Bugzilla/Install/Filesystem.pm
@@ -48,10 +48,10 @@ use constant HT_DEFAULT_DENY => <<EOT;
# nothing in this directory is retrievable unless overridden by an .htaccess
# in a subdirectory
<IfModule mod_version.c>
- <IfVersion <= 2.2>
+ <IfVersion < 2.4>
Deny from all
</IfVersion>
- <IfVersion > 2.2>
+ <IfVersion >= 2.4>
Require all denied
</IfVersion>
</IfModule>
@@ -351,10 +351,10 @@ EOT
# Allow access to .png and .gif files.
<FilesMatch (\\.gif|\\.png)\$>
<IfModule mod_version.c>
- <IfVersion <= 2.2>
+ <IfVersion < 2.4>
Allow from all
</IfVersion>
- <IfVersion > 2.2>
+ <IfVersion >= 2.4>
Require all granted
</IfVersion>
</IfModule>
@@ -365,10 +365,10 @@ EOT
# And no directory listings, either.
<IfModule mod_version.c>
- <IfVersion <= 2.2>
+ <IfVersion < 2.4>
Deny from all
</IfVersion>
- <IfVersion > 2.2>
+ <IfVersion >= 2.4>
Require all denied
</IfVersion>
</IfModule>
@@ -384,13 +384,14 @@ EOT
# the IP address of your webdot server.
#<FilesMatch \\.dot\$>
# <IfModule mod_version.c>
-# <IfVersion <= 2.2>
+# <IfVersion < 2.4>
# Allow from 127.0.0.1/24
# Deny from all
# </IfVersion>
-# <IfVersion > 2.2>
+# <IfVersion >= 2.4>
# Require ip 127.0.0.1/24
# Require all denied
+# </IfVersion>
# </IfModule>
# <IfModule !mod_version.c>
# Allow from 127.0.0.1/24
@@ -401,10 +402,10 @@ EOT
# Allow access to .png files created by a local copy of 'dot'
<FilesMatch \\.png\$>
<IfModule mod_version.c>
- <IfVersion <= 2.2>
+ <IfVersion < 2.4>
Allow from all
</IfVersion>
- <IfVersion > 2.2>
+ <IfVersion >= 2.4>
Require all granted
</IfVersion>
</IfModule>
@@ -415,10 +416,10 @@ EOT
# And no directory listings, either.
<IfModule mod_version.c>
- <IfVersion <= 2.2>
+ <IfVersion < 2.4>
Deny from all
</IfVersion>
- <IfVersion > 2.2>
+ <IfVersion >= 2.4>
Require all denied
</IfVersion>
</IfModule>
@@ -432,10 +433,10 @@ EOT
# Allow access to .css files
<FilesMatch \\.(css|js)\$>
<IfModule mod_version.c>
- <IfVersion <= 2.2>
+ <IfVersion < 2.4>
Allow from all
</IfVersion>
- <IfVersion > 2.2>
+ <IfVersion >= 2.4>
Require all granted
</IfVersion>
</IfModule>
@@ -446,10 +447,10 @@ EOT
# And no directory listings, either.
<IfModule mod_version.c>
- <IfVersion <= 2.2>
+ <IfVersion < 2.4>
Deny from all
</IfVersion>
- <IfVersion > 2.2>
+ <IfVersion >= 2.4>
Require all denied
</IfVersion>
</IfModule>