-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path000-default.conf
54 lines (47 loc) · 1.2 KB
/
000-default.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Documentroot /var/cache/munin/www
ServerName localhost.localdomain
<Directory /var/cache/munin/www>
Allow from all
Satisfy Any
Options none
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault M310
</IfModule>
</Directory>
Alias /munin-cgi/ /usr/lib/munin/cgi/
<Directory /usr/lib/munin/cgi>
Allow from all
Satisfy Any
Options +ExecCGI
<IfModule mod_fcgid.c>
SetHandler fcgid-script
</IfModule>
<IfModule !mod_fcgid.c>
SetHandler cgi-script
</IfModule>
</Directory>
<Location /munin-cgi>
Allow from all
Satisfy Any
</Location>
<Location /munin-cgi/munin-cgi-graph>
Allow from all
Satisfy Any
<IfModule mod_fcgid.c>
SetHandler fcgid-script
</IfModule>
<IfModule !mod_fcgid.c>
SetHandler cgi-script
</IfModule>
</Location>
<Location /munin-cgi/munin-cgi-html>
Allow from all
Satisfy Any
<IfModule mod_fcgid.c>
SetHandler fcgid-script
</IfModule>
<IfModule !mod_fcgid.c>
SetHandler cgi-script
</IfModule>
</Location>