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 <m...@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org