dd
This commit is contained in:
parent
babe3b3d48
commit
f5c46dbd0d
1 changed files with 13 additions and 0 deletions
|
@ -1,6 +1,19 @@
|
|||
<VirtualHost *:80>
|
||||
ServerName {{ munin_servername }}
|
||||
|
||||
DocumentRoot /var/www
|
||||
|
||||
# Rewrite rules to serve traffic from the root instead of /munin-cgi
|
||||
RewriteEngine On
|
||||
# Static files
|
||||
RewriteRule ^/favicon.ico /var/cache/munin/www/static/favicon.ico [L]
|
||||
RewriteRule ^/static/(.*) /var/cache/munin/www/static/$1 [L]
|
||||
# HTML
|
||||
RewriteRule ^(/.*\.html)?$ /munin-cgi/munin-cgi-html/$1 [PT]
|
||||
# Images
|
||||
RewriteRule ^/munin-cgi/munin-cgi-graph/(.*) /$1
|
||||
RewriteCond %{REQUEST_URI} !^/static
|
||||
RewriteRule ^/(.*.png)$ /munin-cgi/munin-cgi-graph/$1 [L,PT]
|
||||
ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
|
||||
ScriptAlias /munin-cgi/munin-cgi-html /usr/lib/munin/cgi/munin-cgi-html
|
||||
|
||||
|
|
Loading…
Reference in a new issue