Merge "Add apache 2.4 support"

This commit is contained in:
Jenkins 2016-04-12 18:52:48 +00:00 committed by Gerrit Code Review
commit da36df247f
1 changed files with 9 additions and 0 deletions

View File

@ -36,17 +36,26 @@ Alias /images/mailman/ /usr/share/images/mailman/
AddHandler cgi-script .cgi
Order allow,deny
Allow from all
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
<Directory /var/lib/mailman/archives/public/>
Options FollowSymlinks
AllowOverride None
Order allow,deny
Allow from all
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
<Directory /usr/share/images/mailman/>
AllowOverride None
Order allow,deny
Allow from all
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
</VirtualHost>