diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-02-20 12:58:46 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-02-20 12:58:46 +0100 |
commit | 638dc6564b1aefe8dc2bca1c1511d6ddd37cad81 (patch) | |
tree | 318eb6185b3bb5ec07ac6ed36916122b22d22ab2 /.htaccess | |
parent | 720e7d4f84a0706cbb4e41c4df8ea29373a50c27 (diff) | |
download | bugzilla-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-- | .htaccess | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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> |