server block change
parent
2f7cf6d83f
commit
789398185c
|
@ -0,0 +1,34 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
server_name lists.libraryofcode.org;
|
||||||
|
|
||||||
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
||||||
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
||||||
|
|
||||||
|
client_max_body_size 1G;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
return 307 $scheme://lists.libraryofcode.org/cgi-bin/mailman/listinfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /cgi-bin/mailman {
|
||||||
|
root /usr/lib/;
|
||||||
|
fastcgi_split_path_info (^/cgi-bin/mailman/[^/]*)(.*)$;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /images/mailman {
|
||||||
|
alias /usr/share/images/mailman;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /pipermail {
|
||||||
|
alias /var/lib/mailman/archives/public;
|
||||||
|
autoindex on;
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,27 +8,15 @@ server {
|
||||||
|
|
||||||
client_max_body_size 1G;
|
client_max_body_size 1G;
|
||||||
|
|
||||||
|
|
||||||
|
location /static/ {
|
||||||
|
alias /etc/mailman3/static/;
|
||||||
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
return 307 $scheme://lists.libraryofcode.org/cgi-bin/mailman/listinfo;
|
proxy_pass http://127.0.0.1:6475;
|
||||||
}
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||||||
location /cgi-bin/mailman {
|
|
||||||
root /usr/lib/;
|
|
||||||
fastcgi_split_path_info (^/cgi-bin/mailman/[^/]*)(.*)$;
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /images/mailman {
|
|
||||||
alias /usr/share/images/mailman;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /pipermail {
|
|
||||||
alias /var/lib/mailman/archives/public;
|
|
||||||
autoindex on;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue