[Mailman-Users] Enabling SSL

Rich Winkel rich at math.missouri.edu
Fri Dec 12 23:21:13 CET 2008


On Fri, Dec 12, 2008 at 01:24:44PM -0800, Mark Sapiro wrote:
> Rich Winkel wrote:
> >Does anyone have a recipe for redirecting http: connections to https?
> 
> If you're talking about for Mailman, see the FAQ at
> <http://wiki.list.org/x/7oA9>.

Yes, thanks, that's part of what I was looking for.  Unfortunately
this page doesn't address the apache rewrite issue, but here's
something that works for me with apache 2.2.  Edit httpd.conf and:

<Directory "/usr/local/mailman">
    RewriteEngine on
    Options FollowSymLinks ExecCGI
    AllowOverride None
    Order allow,deny
    Allow from 128.206.184.195
    RewriteCond %{SERVER_PORT} !^443$
    RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
</Directory>

I found this at the bottom of:
http://www.whoopis.com/howtos/apache-rewrite.html

Rich



More information about the Mailman-Users mailing list