diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2011-01-26 18:47:19 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2011-01-26 18:47:19 +0100 |
commit | 79d4ffcc26fa209d92993233ef2382aaf786384d (patch) | |
tree | c1139a8d3f25c7a44d2db486ce7f624852b69e86 /www-servers/lighttpd/files/conf/mod_cgi.conf | |
parent | 364e853a524cfd4f8464e5349a53d1b04a67b469 (diff) | |
download | overlay-79d4ffcc26fa209d92993233ef2382aaf786384d.tar.gz overlay-79d4ffcc26fa209d92993233ef2382aaf786384d.tar.bz2 overlay-79d4ffcc26fa209d92993233ef2382aaf786384d.zip |
Cleanse
Diffstat (limited to 'www-servers/lighttpd/files/conf/mod_cgi.conf')
-rw-r--r-- | www-servers/lighttpd/files/conf/mod_cgi.conf | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/www-servers/lighttpd/files/conf/mod_cgi.conf b/www-servers/lighttpd/files/conf/mod_cgi.conf deleted file mode 100644 index 1cb3770..0000000 --- a/www-servers/lighttpd/files/conf/mod_cgi.conf +++ /dev/null @@ -1,33 +0,0 @@ -############################################################################### -# mod_cgi.conf -# include'd by lighttpd.conf. -# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/files/conf/mod_cgi.conf,v 1.1 2005/08/27 12:36:13 ka0ttic Exp $ -############################################################################### - -# -# see cgi.txt for more information on using mod_cgi -# - -server.modules += ("mod_cgi") - -# NOTE: this requires mod_alias -alias.url = ( - "/cgi-bin/" => var.basedir + "/cgi-bin/" -) - -# -# Note that you'll also want to enable the -# cgi-bin alias via mod_alias (above). -# - -$HTTP["url"] =~ "^/cgi-bin/" { - # disable directory listings - dir-listing.activate = "disable" - # only allow cgi's in this directory - cgi.assign = ( - ".pl" => "/usr/bin/perl", - ".cgi" => "/usr/bin/perl" - ) -} - -# vim: set ft=conf foldmethod=marker et : |