diff options
Diffstat (limited to 'net-analyzer/munin/files/munin.apache.include')
-rw-r--r-- | net-analyzer/munin/files/munin.apache.include | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-analyzer/munin/files/munin.apache.include b/net-analyzer/munin/files/munin.apache.include new file mode 100644 index 000000000000..f8b2df5daa66 --- /dev/null +++ b/net-analyzer/munin/files/munin.apache.include @@ -0,0 +1,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> |