all posts
13 October 2022

Working zoom on munin graphs on Debian 11 with nginx

In nginx config: server { # some server ... location /munin/static/ { alias /etc/munin/static/; expires modified +1w; } location /munin/ { alias /var/cache/munin/www/; expires modified +310s; } location ^~ /munin-cgi/munin-cgi-graph/ { fastcgi_split_path_info ^(/munin-cgi/munin-cgi-graph)(.*);...

#nginx #munin
Read more →