Opened 7 years ago

Closed 7 years ago

#53500 closed defect (fixed)

https://lists.macports.org redirects to http

Reported by: ryandesign (Ryan Carsten Schmidt) Owned by: neverpanic (Clemens Lang)
Priority: Normal Milestone:
Component: server/hosting Version:
Keywords: Cc:
Port:

Description

https://lists.macports.org redirects to http://lists.macports.org/mailman/listinfo

$ curl -I https://lists.macports.org
HTTP/1.1 301 Moved Permanently
Date: Mon, 06 Feb 2017 02:05:12 GMT
Server: Apache/2.4.10 (Debian)
Location: http://lists.macports.org/mailman/listinfo
Content-Type: text/html; charset=iso-8859-1

It should redirect to https://lists.macports.org/mailman/listinfo

Change History (2)

comment:1 Changed 7 years ago by neverpanic (Clemens Lang)

Owner: changed from admin@… to neverpanic
Status: newaccepted

comment:2 Changed 7 years ago by neverpanic (Clemens Lang)

Resolution: fixed
Status: acceptedclosed

Thanks for the notice. Fixed:

  • apache2/sites-available/lists.conf

    diff --git a/apache2/sites-available/lists.conf b/apache2/sites-available/lists.conf
    index 51ed116..91a1c60 100644
    a b  
    112112
    113113       ScriptAlias /mailman/ /usr/lib/cgi-bin/mailman/
    114114
    115        RedirectMatch permanent ^/mailman[/]*$ http://lists.macports.org/mailman/listinfo
    116        RedirectMatch permanent ^/[/]*$ http://lists.macports.org/mailman/listinfo
     115       RedirectMatch permanent ^/mailman[/]*$ /mailman/listinfo
     116       RedirectMatch permanent ^/[/]*$ /mailman/listinfo
    117117</VirtualHost>
    118118</IfModule>
    119119
Note: See TracTickets for help on using tickets.