diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-12-02 00:10:49 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-12-02 00:10:49 +0100 |
commit | b94ffcb1f443efa0c790441853984ea5aa5e4c31 (patch) | |
tree | a533d45f525c158405049605b1f49414a1189fca /Bugzilla/Install | |
parent | 7027d7998e3ae3e3b3f5450f28ff50ddca94b951 (diff) | |
download | bugzilla-b94ffcb1f443efa0c790441853984ea5aa5e4c31.tar.gz bugzilla-b94ffcb1f443efa0c790441853984ea5aa5e4c31.tar.xz |
Back out bug 1138463. This fix is actually incorrect and the bug was correctly fixed by bug 1223790
a=dkl on IRC
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 59 |
1 files changed, 9 insertions, 50 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index d2d342a77..5f5677460 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -52,12 +52,7 @@ use constant HT_DEFAULT_DENY => <<EOT; Deny from all </IfVersion> <IfVersion >= 2.4> - <IfModule mod_perl.c> - Deny from all - </IfModule> - <IfModule !mod_perl.c> - Require all denied - </IfModule> + Require all denied </IfVersion> </IfModule> <IfModule !mod_version.c> @@ -360,12 +355,7 @@ EOT Allow from all </IfVersion> <IfVersion >= 2.4> - <IfModule mod_perl.c> - Allow from all - </IfModule> - <IfModule !mod_perl.c> - Require all granted - </IfModule> + Require all granted </IfVersion> </IfModule> <IfModule !mod_version.c> @@ -379,12 +369,7 @@ EOT Deny from all </IfVersion> <IfVersion >= 2.4> - <IfModule mod_perl.c> - Deny from all - </IfModule> - <IfModule !mod_perl.c> - Require all denied - </IfModule> + Require all denied </IfVersion> </IfModule> <IfModule !mod_version.c> @@ -404,14 +389,8 @@ EOT # Deny from all # </IfVersion> # <IfVersion >= 2.4> -# <IfModule mod_perl.c> -# Allow from 127.0.0.1/24 -# Deny from all -# </IfModule> -# <IfModule !mod_perl.c> -# Require ip 127.0.0.1/24 -# Require all denied -# </IfModule> +# Require ip 127.0.0.1/24 +# Require all denied # </IfVersion> # </IfModule> # <IfModule !mod_version.c> @@ -427,12 +406,7 @@ EOT Allow from all </IfVersion> <IfVersion >= 2.4> - <IfModule mod_perl.c> - Allow from all - </IfModule> - <IfModule !mod_perl.c> - Require all granted - </IfModule> + Require all granted </IfVersion> </IfModule> <IfModule !mod_version.c> @@ -446,12 +420,7 @@ EOT Deny from all </IfVersion> <IfVersion >= 2.4> - <IfModule mod_perl.c> - Deny from all - </IfModule> - <IfModule !mod_perl.c> - Require all denied - </IfModule> + Require all denied </IfVersion> </IfModule> <IfModule !mod_version.c> @@ -468,12 +437,7 @@ EOT Allow from all </IfVersion> <IfVersion >= 2.4> - <IfModule mod_perl.c> - Allow from all - </IfModule> - <IfModule !mod_perl.c> - Require all granted - </IfModule> + Require all granted </IfVersion> </IfModule> <IfModule !mod_version.c> @@ -487,12 +451,7 @@ EOT Deny from all </IfVersion> <IfVersion >= 2.4> - <IfModule mod_perl.c> - Deny from all - </IfModule> - <IfModule !mod_perl.c> - Require all denied - </IfModule> + Require all denied </IfVersion> </IfModule> <IfModule !mod_version.c> |