On Fri, Mar 8, 2013 at 6:14 PM, Asier Hernández Juanes
<[email protected]> 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

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to