Skip to content
Snippets Groups Projects
mailman-nginx.conf 377 B

server {

    listen 80;
    listen [::]:80;

    server_name listserver.warpzone.ms;
    root /dev/null;
    index index.html;

    location / {
        # First attempt to serve request as file, then

        uwsgi_pass mailman-web:8080;
        include uwsgi_params;
        uwsgi_read_timeout 300;
    }

	location /static  {
 
        root /opt/mailman-web-data;

    }

}