Mailing list software that plays nice with nginx

Hi everyone,

Looking for s script (preferably PHP) that plays nice with nginx “out of
the box” i.e. doesn’t require rewriting .htaccess files into nginx
rules,
etc.

Just lloking for something that will let me send out an
announcement-only
list, handle people adding/deleting themselves, etc. Scheduled emails
would be a blessing.

Anything out there fit the bill?

On Tue, November 8, 2011 12:59 pm, Ian M. Evans wrote:

Looking for s script (preferably PHP) that plays nice with nginx “out of
the box” i.e. doesn’t require rewriting .htaccess files into nginx rules,
etc.

Okay, just discovered http://wiki.nginx.org/PHPList minutes after
sending
this email. If only I had waited. :slight_smile:

Anyway, the settings there seem to be if the list software is installed
at
the document root.

How would I change the locations if the software is installed at /lists?
[I suck at locations and haven’t had much sleep!]

Thanks.

On 08/11/2011 1:08 PM, Ian M. Evans wrote:

Anyway, the settings there seem to be if the list software is installed at
the document root.
How would I change the locations if the software is installed at /lists?
[I suck at locations and haven’t had much sleep!]

Here are the locations on the wiki:

location ~* .(txt|log|inc)$ {

location ~* .(js|css|png|jpg|jpeg|gif|ico)$ {

location /config {

location ~*
(index.php|upload.php|connector.php|dl.php|ut.php|lt.php|download.php)$
{
fastcgi_split_path_info ^(.|.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
[etc]
}

location ~ .php$ {

If phplists is being installed in /lists and not the root as in the wiki
example (http://wiki.nginx.org/PHPList), how would I change these
locations?

Would it be location ~* /lists.(txt|log|inc)$ {
etc?

And how would I change fastcgi_split_path_info ^(.|.php)(/.+)$; and
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

Thanks.