🎉 Sympa is here!

This commit is contained in:
2020-07-06 14:13:35 +02:00
commit b685832d12
15 changed files with 1527 additions and 0 deletions

21
nginx.conf.template Normal file
View File

@ -0,0 +1,21 @@
server {
listen 80;
server_name {{MAILING_LIST_DOMAIN}};
rewrite ^/$ /sympa permanent;
location /sympa {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/run/sympa/wwsympa.socket;
fastcgi_split_path_info ^(/sympa)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location /static-sympa {
alias /usr/share/sympa/static_content;
}
location /css-sympa {
alias /var/lib/sympa/css;
}
}