diff options
author | Holger Levsen <holger@layer-acht.org> | 2012-11-05 00:23:23 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-11-05 00:23:23 +0100 |
commit | 0cd21e28206362d7ee0e3a262b4e37cdf0cc6c1d (patch) | |
tree | a60f1090ec258b3047588cf26285c6976f1e265d /etc/apache2 | |
parent | 5bf8fd393b0c05f954e3cd9b99ce3a7d4020aea5 (diff) | |
download | jenkins.debian.net-0cd21e28206362d7ee0e3a262b4e37cdf0cc6c1d.tar.xz |
make munin apache plugins work
Diffstat (limited to 'etc/apache2')
-rw-r--r-- | etc/apache2/conf.d/munin | 16 | ||||
-rw-r--r-- | etc/apache2/sites-available/jenkins.debian.net | 5 |
2 files changed, 19 insertions, 2 deletions
diff --git a/etc/apache2/conf.d/munin b/etc/apache2/conf.d/munin index 2c77e185..e81528d7 100644 --- a/etc/apache2/conf.d/munin +++ b/etc/apache2/conf.d/munin @@ -84,3 +84,19 @@ ScriptAlias /munin-cgi/munin-cgi-html /usr/lib/munin/cgi/munin-cgi-html </IfModule> </Location> +ExtendedStatus On +<IfModule mod_status.c> + # + # Allow server status reports generated by mod_status, + # with the URL of http://servername/server-status + # Change the ".example.com" to match your domain to enable. + # + <Location /server-status> + SetHandler server-status + Order deny,allow + Deny from all + Allow from 127.0.0.1 + Allow from 46.16.77.49 + </Location> +</IfModule> + diff --git a/etc/apache2/sites-available/jenkins.debian.net b/etc/apache2/sites-available/jenkins.debian.net index dc2d5b59..75f7f672 100644 --- a/etc/apache2/sites-available/jenkins.debian.net +++ b/etc/apache2/sites-available/jenkins.debian.net @@ -28,8 +28,9 @@ </Proxy> ProxyPreserveHost on # proxy everything but /munin - ProxyPass /munin ! - ProxyPass / http://localhost:8080/ + ProxyPass /munin ! + ProxyPass /server-status ! + ProxyPass / http://localhost:8080/ ErrorLog ${APACHE_LOG_DIR}/error.log |