summaryrefslogtreecommitdiffstats
path: root/.htaccess
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 /.htaccess
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 '.htaccess')
-rw-r--r--.htaccess4
1 files changed, 2 insertions, 2 deletions
diff --git a/.htaccess b/.htaccess
index 14325d152..2f009697c 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,10 +1,10 @@
# Don't allow people to retrieve non-cgi executable files or our private data
<FilesMatch (\.pm|\.pl|\.tmpl|localconfig.*)$>
<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>