blob: f8b2df5daa66a9060518444f28e5279b7dad2efd (
plain)
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
|
# -*- apache -*-
ScriptAlias /munin-cgi/ /usr/libexec/munin/cgi/
Alias /munin/static /etc/munin/static
<IfDefine MUNIN_HTML_CGI>
RewriteEngine on
RewriteCond %{REQUEST_URI} (/|\.html)$
RewriteCond %{REQUEST_URI} !/static
RewriteRule ^/munin/(.*) /munin-cgi/munin-cgi-html/$1 [PT,L]
</IfDefine>
<Directory /usr/libexec/munin/cgi/>
Options +ExecCGI
Order allow,deny
Allow from all
<IfModule mod_fcgid.c>
SetHandler fcgid-script
</IfModule>
<IfModule !mod_fcgid.c>
SetHandler cgi-script
</IfModule>
</Directory>
<Directory /etc/munin/static>
Order allow,deny
Allow from all
</Directory>
|