summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-02-12 23:16:14 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-02-12 23:16:14 +0000
commitd8e8311698b431b47d43c0eb53d1c159142160d7 (patch)
tree48a8b1be4dc15a2539ab114ee98f4f1d4eefc19e /sys-power/nut/files/lighttpd_nut.conf
parentVersion bump. (diff)
downloadgentoo-2-d8e8311698b431b47d43c0eb53d1c159142160d7.tar.gz
gentoo-2-d8e8311698b431b47d43c0eb53d1c159142160d7.tar.bz2
gentoo-2-d8e8311698b431b47d43c0eb53d1c159142160d7.zip
old
(Portage version: 2.2.0_alpha23/cvs/Linux x86_64)
Diffstat (limited to 'sys-power/nut/files/lighttpd_nut.conf')
-rw-r--r--sys-power/nut/files/lighttpd_nut.conf23
1 files changed, 0 insertions, 23 deletions
diff --git a/sys-power/nut/files/lighttpd_nut.conf b/sys-power/nut/files/lighttpd_nut.conf
deleted file mode 100644
index 7e5d4d1843cc..000000000000
--- a/sys-power/nut/files/lighttpd_nut.conf
+++ /dev/null
@@ -1,23 +0,0 @@
-###############################################################################
-# Lighttpd configuration for using NUT under Gentoo Linux.
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/nut/files/lighttpd_nut.conf,v 1.1 2006/05/18 23:28:07 robbat2 Exp $
-###############################################################################
-
-# Simple copy this to /etc/lighttpd/ and include it in your lighttpd.conf.
-# It will make NUT available at http://$HOST/nut/
-
-server.modules += ("mod_cgi")
-
-# If you want to limit it to some host, uncomment the host check and modify it to your needs.
-# $HTTP["host"] == "www2.example.org" {
-alias.url += ( "/nut/" => "/usr/share/nut/" )
-$HTTP["url"] =~ "^/nut/" {
- dir-listing.activate = "disable"
- cgi.assign = ( ".cgi" => "" )
- index-file.names = ( "upsstats.cgi" )
-}
-# }
-
-# vim: set ft=conf foldmethod=marker et :