I am trying to run Trac on nginx.
There is a simple solution that consists of running the tracd server, but I'm trying to avoid that. It doesn't support unix sockets.
Instead, I'm trying to use Spawning that should be able to launch any WSGI application.
But I don't know how to use it. After deplyement, I have my cgi-bin
directory with trac.wsgi
in it, but I don't know how to launch it using Spawning.
It doesn't accept a file name as an argument, I have to provide the module and the application names, like spawning my_module.my_wsgi_app
. But how do I do it with trac.wsgi ?