Modified:
trunk/lighttpd.conf
Log:
Add a mapping for .py to the CGI module so that the janrain-python
tester will run.
Modified: trunk/lighttpd.conf
==============================================================================
--- trunk/lighttpd.conf (original)
+++ trunk/lighttpd.conf Fri May 16 16:08:46 2008
@@ -13,6 +13,7 @@
cgi.assign = (
".pl" => "/usr/bin/perl",
- ".cgi" => "/usr/bin/perl"
+ ".cgi" => "/usr/bin/perl",
+ ".py" => "/usr/bin/python"
)