diff options
Diffstat (limited to 'etc/apache2/conf.d/munin')
-rw-r--r-- | etc/apache2/conf.d/munin | 16 |
1 files changed, 16 insertions, 0 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> + |