Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
91e07807
Commit
91e07807
authored
Mar 11, 2015
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1138463: mod_perl does not support Apache 2.4 directives
r=dkl a=glob
parent
154e70f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
10 deletions
+56
-10
.htaccess
.htaccess
+6
-1
Filesystem.pm
Bugzilla/Install/Filesystem.pm
+50
-9
No files found.
.htaccess
View file @
91e07807
...
...
@@ -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
>
...
...
Bugzilla/Install/Filesystem.pm
View file @
91e07807
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment