summaryrefslogtreecommitdiffstats
path: root/testing/nagios/lighttpd-nagios.conf
diff options
context:
space:
mode:
Diffstat (limited to 'testing/nagios/lighttpd-nagios.conf')
-rw-r--r--testing/nagios/lighttpd-nagios.conf29
1 files changed, 0 insertions, 29 deletions
diff --git a/testing/nagios/lighttpd-nagios.conf b/testing/nagios/lighttpd-nagios.conf
deleted file mode 100644
index cb7081d8..00000000
--- a/testing/nagios/lighttpd-nagios.conf
+++ /dev/null
@@ -1,29 +0,0 @@
-###
-# Sample nagios lighttpd config
-###
-
-server.modules += ("mod_cgi")
-server.modules += ("mod_auth")
-server.modules += ("mod_alias")
-
-auth.require += ( "/nagios" =>
- (
- "method" => "digest",
- "realm" => "nagios",
- "require" => "valid-user"
- )
-)
-
-$HTTP["url"] =~ "^/nagios/cgi-bin/" {
- dir-listing.activate = "disable"
- cgi.assign = (
- ".pl" => "/usr/bin/perl",
- ".cgi" => ""
- )
-}
-
-alias.url += (
- "/nagios/cgi-bin" => "/usr/lib/nagios/cgi-bin",
- "/nagios" => "/usr/share/nagios/htdocs"
-)
-