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:
- Lighttpd spawn-fcgi But this seems to require that you compile lighttpd just to get the fcgi server, which is weird.
- fcgi.py But this one seems to be deprecated. At the very least it is poorly documented.
- flup This one comes with dependencies on ubuntu (python-cheetah{a} python-mysqldb{a} python-webpy{a}) that seem unnecessary. Also poorly documented.
Are there any recent guides for setting this up? Trac's own FastCGI setup page seems to miss some steps.