]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-mod_cgi.conf
- leave it commented
[packages/lighttpd.git] / lighttpd-mod_cgi.conf
1 # CGI module
2 #
3 # http://www.lighttpd.net/documentation/cgi.html
4
5 server.modules += (
6         "mod_cgi"
7 )
8
9 $HTTP["url"] =~ "/cgi-bin/" {
10         cgi.assign = ( "" => "" )
11 }
12
13 alias.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 )
18
19 cgi.assign = (
20     ".cgi" => "",
21 #       ".pl"  => "/usr/bin/perl",
22 #       ".php" => "/usr/bin/php.cgi",
23 #       ".py"  => "/usr/bin/python",
24 )
This page took 0.094904 seconds and 4 git commands to generate.