[Mailman-Users] Mailman web interface with apache 2.4

Stefano Cislaghi s.cislaghi at gmail.com
Wed Feb 19 16:59:08 CET 2014


Hi,

I've solved few minutes ago. The issue was rather stupid. CGID wasn't
enabled and must be manually enabled in apache. Doing so solved the issue.

Thanks
Ste


On 19 February 2014 16:57, Mark Sapiro <mark at msapiro.net> wrote:

> On 02/19/2014 01:04 AM, Stefano Cislaghi wrote:
> >
> > Digging into changelog of apache 2.4 I discoved that entries:
> >
> > Order Allow, Deny
> > Allow from all
> >
> > are no more current and must be replaced by  'Require all granted'. Doing
> > so didn't solve the issue, but error log changed as:
> >
> > AH01797: client denied by server configuration:
> > /usr/lib/cgi-bin/mailman/admin
> >
> > Here my current mailman.conf in apache2 sites:
> >
> > ScriptAlias /cgi-bin/mailman/ /usr/lib/cgi-bin/mailman/
> > Alias /pipermail/ /var/lib/mailman/archives/public/
> > Alias /images/mailman/ /usr/share/images/mailman/
> > <Directory /usr/lib/cgi-bin/mailman/>
> >     AllowOverride None
> >     Options ExecCGI
> >     AddHandler cgi-script .cgi
> >     Require all granted
> > </Directory>
> > <Directory /var/lib/mailman/archives/public/>
> >     Options FollowSymlinks
> >     AllowOverride None
> >     Require all granted
> > </Directory>
> > <Directory /usr/share/images/mailman/>
> >     AllowOverride None
> >     Require all granted
> > </Directory>
> >
> >
> > Does anyone already hit this issue and solved? Seems to be something
> > relalted to security options into apache 2.4 and cgi execution.
>
>
> I hit the same issue when upgrading from Ubuntu 13.04 to 13.10. These
> mailman.conf settings work for me.
>
> ScriptAlias /mailman/       /var/MM/21/cgi-bin/
> Alias   /pipermail/     /var/MM/21/archives/public/
>
> <Directory "/var/MM/21/cgi-bin/">
>     AllowOverride None
>     Options ExecCGI
>     Order Deny,Allow
>     Allow from all
>     Require all granted
> </Directory>
>
> <Directory "/var/MM/21/archives/public">
>     Options +FollowSymLinks
>     Order allow,deny
>     Allow from all
>     Require all granted
> </Directory>
>
>
> --
> Mark Sapiro <mark at msapiro.net>        The highway is for gamblers,
> San Francisco Bay Area, California    better use your sense - B. Dylan
>


More information about the Mailman-Users mailing list