]> git.pld-linux.org Git - packages/lighttpd.git/blame - lighttpd-mod_cgi.conf
- default to local socket
[packages/lighttpd.git] / lighttpd-mod_cgi.conf
CommitLineData
b7452efb
ER
1# CGI module
2# http://www.lighttpd.net/documentation/cgi.html
3
7d3968ad
ER
4server.modules += (
5 "mod_cgi"
6)
693950e2 7
b7452efb
ER
8$HTTP["url"] =~ "/cgi-bin/" {
9 cgi.assign = ( "" => "" )
10}
11
12alias.url += (
13 "/cgi-bin/" => "/home/services/lighttpd/cgi-bin/",
14 # FIXME: or use system shared cgi-bin here?
15# "/cgi-bin/" => "/usr/lib/cgi-bin/",
16)
693950e2 17
b7452efb
ER
18cgi.assign = (
19 ".cgi" => "",
20# ".pl" => "/usr/bin/perl",
21# ".php" => "/usr/bin/php-cgi",
22# ".py" => "/usr/bin/python",
23)
This page took 0.032766 seconds and 4 git commands to generate.