mirror of
https://github.com/casjaysdevdocker/tools
synced 2025-09-19 21:57:47 -04:00
🗃️ Committing everything that changed 🗃️
applications/ configs/ lists/ wwwroot/
This commit is contained in:
23
configs/lighttpd/mod_cgi.conf
Normal file
23
configs/lighttpd/mod_cgi.conf
Normal file
@@ -0,0 +1,23 @@
|
||||
###############################################################################
|
||||
# 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 $
|
||||
###############################################################################
|
||||
# NOTE: this requires mod_alias
|
||||
alias.url = (
|
||||
"/cgi-bin/" => "/data/htdocs/cgi-bin"
|
||||
)
|
||||
|
||||
cgi.assign = (
|
||||
".pl" => "/usr/bin/perl",
|
||||
".cgi" => "/usr/bin/perl",
|
||||
".rb" => "/usr/bin/ruby",
|
||||
".py" => "/usr/bin/python",
|
||||
".php" => "/usr/bin/php-cgi"
|
||||
)
|
||||
|
||||
$HTTP["url"] =~ "^/cgi-bin/" {
|
||||
dir-listing.activate = "disable"
|
||||
}
|
||||
|
||||
# vim: set ft=conf foldmethod=marker et :
|
Reference in New Issue
Block a user