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