mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/#taxing-rewrites
34 lines
1003 B
Django/Jinja
34 lines
1003 B
Django/Jinja
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name mailman.archlinux.org;
|
|
|
|
access_log /var/log/nginx/{{ mailman_domain }}/access.log reduced;
|
|
error_log /var/log/nginx/{{ mailman_domain }}/error.log;
|
|
|
|
include snippets/letsencrypt.conf;
|
|
|
|
location / {
|
|
access_log off;
|
|
return 301 https://{{ mailman_domain }}$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name mailman.archlinux.org;
|
|
|
|
access_log /var/log/nginx/{{ mailman_domain }}/access.log reduced;
|
|
error_log /var/log/nginx/{{ mailman_domain }}/error.log;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/mailman.archlinux.org/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/mailman.archlinux.org/privkey.pem;
|
|
ssl_trusted_certificate /etc/letsencrypt/live/mailman.archlinux.org/chain.pem;
|
|
|
|
location / {
|
|
access_log off;
|
|
return 301 https://{{ mailman_domain }}$request_uri;
|
|
}
|
|
}
|