Configure FastCGI for Python

Posted by Rob on Server Fault See other posts from Server Fault or by Rob
Published on 2010-04-05T01:02:18Z Indexed on 2010/04/05 1:03 UTC
Read the original article Hit count: 600

Filed under:
|
|

I have nginx running on a VM and I want to run a Trac site. I need to run a python FastCGI server, but I cannot tell which is the server to use. I have found the following:

  • <a href="http://redmine.lighttpd.net/projects/spawn-fcgi">Lighttpd spawn-fcgi</a> But this seems to require that you compile lighttpd just to get the fcgi server, which is weird.
  • <a href="http://svn.saddi.com/py-lib/trunk/fcgi.py">fcgi.py</a> But this one seems to be depreciated. At the very least it is poorly documented.
  • <a href="http://trac.saddi.com/flup">flup</a> This one comes with dependencies on ubuntu (python-cheetah{a} python-mysqldb{a} python-webpy{a}) that seem unnecessary. Also poorly documented.

Are their any recent guides for setting this up. Trac's own FastCGI setup page seems to miss some steps.

© Server Fault or respective owner

Related posts about python

Related posts about trac