Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2008-12-12 22:39:30
Size: 1010
Editor: ericb
Comment:
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 1: Line 1:
#pragma page-filename DOC/versions/14352681 #pragma page-filename DOC/versions/7372814
Line 3: Line 3:
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)
Line 6: Line 7:


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)