Ho un progetto treeio nella mia directory home, ora voglio eseguire quel treeio nel server nginx. Già il treeio può funzionare indipendentemente su Django viene fornito con la fonte. Non voglio eseguirlo nel server Django, ma voglio eseguirlo sul server nginx. Ho appena seguito i passaggi indicati in questa risposta di Karthik .
Tuttavia, durante l'esecuzione o seguendo il passaggio 4 da quella risposta, genera il seguente errore:
[uWSGI] getting INI configuration from uwsgi.ini
* Starting uWSGI 1.0.3-debian (32bit) on [Thu Jun 27 17:22:01 2013] *
compiled with version: 4.6.3 on 17 July 2012 02:24:04
current working directory: /home/rajesh/treeio
detected binary path: /usr/bin/uwsgi-core
chdir(): No such file or directory [uwsgi.c line 1723]
Il mio uwsgi.ini
file contiene
[uwsgi]
# set the http port
http = :8080
# change to django project directory
chdir = /home/treeio/
# add /var/www to the pythonpath, in this way we can use the project.app format
pythonpath = /var/www
# set the project settings name
env = DJANGO_SETTINGS_MODULE=treeio.settings
# load django
module = django.core.handlers.wsgi:WSGIHandler()
Aiutatemi a distribuire treeio nel server nginx.
uwsgi.ini
e nginx) nella tua domanda. E anche un link alla risposta / elenco di passaggi a cui ti riferisci (sono in un'altra domanda?).