我正在尝试按照本指南中的步骤操作:http: //uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
在我进入 nginx 部分之前,我试图确保 uWSGI 正常工作
我的文件夹结构是 srv/www/domain/projectdatabank/
项目数据库文件夹包含我的 manage.py 文件
我的 wsgi.py 文件如下所示:
import os
import sys
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
您需要查看我的 settings.py 吗?
当我将自己指向浏览器时出现以下错误:
-- no python application found, check your startup logs for errors ---
[pid: 10165|app: -1|req: -1/1] 66.56.35.151 () {38 vars in 681 bytes} [Tue Jul 9 18:19:46 2013] GET /admin/ => generated 21 bytes in 0 msecs (HTTP/1.1 500) 1 headers in 57 bytes (0 switches on core 0)
--- no python application found, check your startup logs for errors ---
[pid: 10165|app: -1|req: -1/2] 66.56.35.151 () {36 vars in 638 bytes} [Tue Jul 9 18:19:49 2013] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 1 headers in 57 bytes (0 switches on core 0)
现在,当我检查我的 uWGI 日志时,它和上面的一样。