Differences between revisions 2 and 3
Revision 2 as of 2008-12-12 22:39:31
Size: 1011
Editor: ericb
Comment: Migrated to Confluence 4.0
Revision 3 as of 2015-03-04 05:47:03
Size: 1014
Editor: msapiro
Comment: un WikiName
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
For anyone setting up Mailman on the OpenSolaris distro, this is what I ended up adding to /etc/apache2/2.2/httpd.conf. (Of course don't forget to start the apache service as well: svcadm enable apache22) For anyone setting up Mailman on the !OpenSolaris distro, this is what I ended up adding to /etc/apache2/2.2/httpd.conf. (Of course don't forget to start the apache service as well: svcadm enable apache22)


For anyone setting up Mailman on the OpenSolaris distro, this is what I ended up adding to /etc/apache2/2.2/httpd.conf. (Of course don't forget to start the apache service as well: svcadm enable apache22)


ScriptAlias /mailman/ "/usr/local/mailman/cgi-bin/"
Alias  /pipermail/    "/usr/local/mailman/archives/public/"
Alias  /icons/        "/usr/local/mailman/icons/"
<Directory "/usr/local/mailman/archives/public/">
        AddDefaultCharset Off
        Options Indexes FollowSymlinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
</Directory>
<Directory "/usr/local/mailman/icons/">
        Options Indexes FollowSymlinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
</Directory>
<Directory "/usr/local/mailman/cgi-bin/">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
</Directory>

MailmanWiki: DOC/Integrating with Apache -- OpenSolaris Specific (last edited 2015-03-04 05:47:03 by msapiro)