munin: Add default 1.4.4 configuration.
[matthijs/servers/drsnuggles.git] / etc / munin / munin-node.conf
1 #
2 # Example config-file for munin-node
3 #
4
5 log_level 4
6 log_file /var/log/munin/munin-node.log
7 pid_file /var/run/munin/munin-node.pid
8
9 background 1
10 setsid 1
11
12 user root
13 group root
14
15 # Regexps for files to ignore
16
17 ignore_file ~$
18 #ignore_file [#~]$  # FIX doesn't work. '#' starts a comment
19 ignore_file DEADJOE$ 
20 ignore_file \.bak$
21 ignore_file %$
22 ignore_file \.dpkg-(tmp|new|old|dist)$
23 ignore_file \.rpm(save|new)$
24 ignore_file \.pod$
25
26 # Set this if the client doesn't report the correct hostname when
27 # telnetting to localhost, port 4949
28 #
29 #host_name localhost.localdomain
30
31 # A list of addresses that are allowed to connect.  This must be a
32 # regular expression, since Net::Server does not understand CIDR-style
33 # network notation unless the perl module Net::CIDR is installed.  You
34 # may repeat the allow line as many times as you'd like
35
36 allow ^127\.0\.0\.1$
37
38 # If you have installed the Net::CIDR perl module, you can use
39 # multiple cidr_allow and cidr_deny address/mask patterns.  A
40 # connecting client must match any cidr_allow, and not match any
41 # cidr_deny.  Example:
42
43 # cidr_allow 127.0.0.1/32
44 # cidr_allow 192.0.2.0/24
45 # cidr_deny  192.0.2.42/32
46
47 # Which address to bind to;
48 host *
49 # host 127.0.0.1
50
51 # And which port
52 port 4949
53