代码拉取完成,页面将自动刷新
# Example configuration for nginx with cgi generated graphs.
#
# To use this example config file you need to enable cgi graphs in Munin. Add
# following three lines to /etc/munin/conf.d/local.conf (without # character):
#
# graph_strategy cgi
# html_strategy cgi
# cgiurl_graph /munin/graph
#
# Then copy this file to /etc/nginx/conf.d/ directory and restart nginx.
# Services munin-cgi-html and munin-cgi-graph must also be started:
#
# systemctl enable --now munin-cgi-html.socket munin-cgi-graph.socket
#
# Access Munin at http://localhost/munin/
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
location /munin/static/ {
alias /etc/munin/static/;
}
location /munin/graph/ {
include fastcgi_params;
fastcgi_split_path_info ^(/munin/graph)(.*);
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/var/run/munin/munin-cgi-graph.sock;
}
location /munin/ {
include fastcgi_params;
fastcgi_split_path_info ^(/munin)(.*);
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/var/run/munin/munin-cgi-html.sock;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。