On Fri, Mar 8, 2013 at 6:14 PM, Asier Hernández Juanes
<
asier...@gmail.com> wrote:
> When I type "locate *.fcgi" I get no results at all
that searches for files. no relation to processes.
to help you, first we need to know a bit about your deployment
architecture, specially which WSGI server you're using behind nginx.
for FastCGI, one easy to use is flup. it can be started using the
Django manage.py script:
# python manage.py runfcgi
another popular choice is a fast python http server, like gunicorn.
in either case, it's usually not started from the command line, but
from a startup script. also, most of these scripts don't run directly
the server, but use some daemon monitor. like supervisord, or
start-stop-daemon.
as you see, there are lots of options
so, which is your case? which steps you did to install your app?
--
Javier