홈 디렉토리에 treeio 프로젝트가 있는데, 이제 nginx 서버에서 해당 treeio를 실행하고 싶습니다. 이미 Django에서 독립적으로 실행할 수있는 트리오가 소스와 함께 제공됩니다. 장고 서버에서 실행하고 싶지 않지만 nginx 서버에서 실행하고 싶습니다. 나는 방금 Karthik의 대답에 주어진 단계를 따랐습니다 .
그러나 해당 답변에서 4 단계를 실행하거나 수행하는 동안 다음 오류가 발생합니다.
[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]
내 uwsgi.ini
파일에
[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()
nginx 서버에 treeio를 배포하는 데 도움을주십시오.
@ADR이 문제에 대한 답을 찾은 적이 있습니까?
—
Mark Stosberg
uwsgi.ini
질문에 구성 및 nginx를 포함하십시오 . 또한 언급하고있는 답변 / 단계 목록 (다른 질문이 있습니까?)에 연결하십시오.