add munin.tenforward.social config

This commit is contained in:
Sadiq Saif 2022-11-11 11:07:22 -05:00
parent f61abd96bf
commit 0041a0b297
1 changed files with 19 additions and 0 deletions

View File

@ -10,6 +10,25 @@
- sendfile "on"
- server_names_hash_bucket_size 512
nginx_sites:
munin.tenforward.social.http:
- listen *:80
- listen [::]:80
- server_name munin.tenforward.social
- location ^~ /munin-cgi/munin-cgi-graph/ {
fastcgi_split_path_info ^(/munin-cgi/munin-cgi-graph)(.*);
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/var/run/munin/fastcgi-graph.sock;
include fastcgi_params;
}
- location /munin/static/ {
alias /etc/munin/static/;
}
- location /munin/ {
fastcgi_split_path_info ^(/munin)(.*);
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/var/run/munin/fastcgi-html.sock;
include fastcgi_params;
}
tenforward.social.http:
- listen *:80
- listen [::]:80