summaryrefslogtreecommitdiffstats
path: root/nginx-munin
diff options
context:
space:
mode:
Diffstat (limited to 'nginx-munin')
-rw-r--r--nginx-munin29
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;
- }
-}