diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-10-05 09:07:54 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-10-05 09:07:54 +0200 |
commit | 6a486b088b957a2af6d1dfeb692ecef6ec8c5e06 (patch) | |
tree | 9832c92a1a20ae2f8b3627248e4784442befb7d7 /nginx-munin | |
parent | 6348285571e9877990317303b5508b737686faef (diff) | |
download | munin-master.tar.gz munin-master.tar.bz2 munin-master.tar.xz munin-master.zip |
Diffstat (limited to 'nginx-munin')
-rw-r--r-- | nginx-munin | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/nginx-munin b/nginx-munin deleted file mode 100644 index 4dc9764..0000000 --- a/nginx-munin +++ /dev/null @@ -1,29 +0,0 @@ -server { - listen 8080 default_server; - server_name munin; - - access_log /proc/self/fd/1; - error_log /proc/self/fd/2; - - location /munin/static { - alias /etc/munin/static; - } - - location ^~ /munin/ { - fastcgi_split_path_info ^(/munin)(.*); - fastcgi_param PATH_INFO $fastcgi_path_info; - fastcgi_pass 127.0.0.1:9001; - include fastcgi_params; - } - - location ^~ /munin-cgi/munin-cgi-graph/ { - fastcgi_split_path_info ^(/munin-cgi/munin-cgi-graph)(.*); - fastcgi_param PATH_INFO $fastcgi_path_info; - fastcgi_pass 127.0.0.1:9000; - include fastcgi_params; - } - - location / { - rewrite ^/$ munin/ redirect; break; - } -} |