blob: fa3cad1bd9120d92e2eb325f906528dcf450e616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
server {
listen 80;
listen [::]:80 ipv6only=on;
server_name lists.fripost.org;
access_log /var/log/nginx/lists.access.log;
error_log /var/log/nginx/lists.error.log info;
return 302 https://$host$request_uri;
}
server {
listen 443;
listen [::]:443 ipv6only=on;
server_name lists.fripost.org;
access_log /var/log/nginx/lists.access.log;
error_log /var/log/nginx/lists.error.log info;
include ssl/config;
ssl_certificate /etc/nginx/ssl/lists.fripost.org.pem;
ssl_certificate_key /etc/nginx/ssl/lists.fripost.org.key;
location = / {
return 302 /sympa$args;
}
location ^~ /static-sympa/ {
alias /var/lib/sympa/static_content/;
}
location ^~ /sympa {
fastcgi_split_path_info ^(/sympa)(.*)$;
include fastcgi/params;
fastcgi_pass unix:/run/wwsympa.socket;
gzip off;
}
location ~* ^/([^/]+)/?$ {
return 302 /$1/sympa$args;
}
location ~* ^/([^/]+)/sympa(/.*)?$ {
set $vhost $1;
if (!-f /etc/sympa/$vhost/robot.conf) {
return 404;
}
fastcgi_split_path_info ^(/[^/]+/sympa)(.*)$;
include fastcgi/params;
fastcgi_pass unix:/run/wwsympa.socket;
gzip off;
fastcgi_param SERVER_NAME $vhost;
}
location / {
return 404;
}
}
|