comparison lighttpd/conf.d/cgi.conf @ 30:e8f3b7994d88

Port to Python 3. All scripts and modules have been ported to Python 3 and appear to work. Some changes to the lighttpd configuration were needed.
author John "Elwin" Edwards
date Tue, 31 Dec 2013 13:36:19 -0500
parents b003235abe75
children
comparison
equal deleted inserted replaced
29:23a769aa487e 30:e8f3b7994d88
11 ## Plain old CGI handling 11 ## Plain old CGI handling
12 ## 12 ##
13 ## For PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini. 13 ## For PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini.
14 ## 14 ##
15 cgi.assign = ( ".pl" => "/usr/bin/perl", 15 cgi.assign = ( ".pl" => "/usr/bin/perl",
16 ".cgi" => "/usr/bin/python", 16 ".cgi" => "",
17 ".rb" => "/usr/bin/ruby", 17 ".rb" => "/usr/bin/ruby",
18 ".erb" => "/usr/bin/eruby", 18 ".erb" => "/usr/bin/eruby",
19 ".py" => "/usr/bin/python" ) 19 ".py" => "/usr/bin/python" )
20 20
21 ## 21 ##