ansible/roles/mail/templates/nginx/vhost.j2

34 lines
812 B
Plaintext
Raw Normal View History

2016-02-29 21:29:44 +01:00
server {
2016-03-01 07:56:37 +01:00
listen 443 ssl http2;
listen [::]:443 ssl http2;
ssl_certificate /etc/nginx/ssl/{{ mailman_domain }}.crt;
ssl_certificate_key /etc/nginx/ssl/{{ mailman_domain }}.key;
2016-02-29 21:29:44 +01:00
server_name {{ mailman_domain }};
location = / {
2016-02-29 21:55:12 +01:00
rewrite ^ /listinfo permanent;
2016-02-29 21:29:44 +01:00
}
location / {
2016-03-01 07:56:37 +01:00
root /usr/lib/cgi-bin/mailman/;
2016-02-29 21:55:12 +01:00
fastcgi_split_path_info (^/[^/]*)(.*)$;
2016-02-29 21:29:44 +01:00
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_intercept_errors on;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
}
2016-02-29 21:55:12 +01:00
2016-02-29 21:29:44 +01:00
location /images/mailman {
alias /usr/share/images/mailman;
}
2016-02-29 21:55:12 +01:00
2016-02-29 21:29:44 +01:00
location /pipermail {
alias /var/lib/mailman/archives/public;
autoindex on;
}
}