From 48ebc714878e89b5fe0483e77c5b1949983fc6bd Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Mon, 21 Oct 2013 13:29:02 +0200 Subject: Let Nginx hide Mailman's "listinfo" index page Use as the mailing lists overview page. diff --git a/etc/nginx.conf b/etc/nginx.conf index 4c74584..acaae1c 100644 --- a/etc/nginx.conf +++ b/etc/nginx.conf @@ -42,8 +42,8 @@ server { location ^~ /list/icons/ { alias /home/mailman/server/icons/; } - location ~ ^/list/?$ { - return 301 /list/listinfo; + location ~ ^/list(?:/listinfo)?/?$ { + return 301 /support.html; } location ~ ^/(?:list/|repositories) { root /home/plugins/web/cgi-bin; -- cgit v0.10-9-g596f