blob: fe5e7e515c7043efc6b5ca72e8c9d5d616ca8709 (
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
|
server {
listen 127.0.0.1:80;
listen [::1]:80;
server_name munin.fripost.org;
access_log /var/log/nginx/munin.access.log;
error_log /var/log/nginx/munin.error.log info;
location = / {
return 302 /munin$args;
}
location /munin/static/ {
alias /etc/munin/static/;
}
location /munin-cgi/munin-cgi-graph/ {
fastcgi_split_path_info ^(/munin-cgi/munin-cgi-graph)(.*);
include snippets/fastcgi.conf;
fastcgi_pass unix:/run/munin/cgi-graph.socket;
gzip off;
}
location /munin/ {
fastcgi_split_path_info ^(/munin)(.*);
include snippets/fastcgi.conf;
fastcgi_pass unix:/run/munin/cgi-html.socket;
gzip off;
}
}
|