我想使用Python 3和nginx在virtualenv中提供基本的Flask应用程序。我收到了错误
内部服务器错误
当我尝试浏览页面时。我还看到/var/log/uwsgi/app/myproj.log
中的错误让我相信错误位于我的uwsgi配置文件中。 nginx和uwsgi似乎沟通得很好。
这是我的目录结构:
/srv/http/myproj/
|----- setup.py
|----- env/
|----- myproj/
|----- __init__.py
|----- myproj.py
/etc/uwsgi/apps-enabled/
|----- myproj.ini
/etc/nginx/sites-enabled/
|----- myproj
这是我在/var/log/uwsgi/app/myproj.log
中看到的错误:
Thu Jun 8 00:00:41 2017 - *** Operational MODE: preforking ***
Thu Jun 8 00:00:41 2017 - unable to load app 0 (mountpoint='') (callable not found or import error)
Thu Jun 8 00:00:41 2017 - *** no app loaded. going in full dynamic mode ***
Thu Jun 8 00:00:41 2017 - *** uWSGI is running in multiple interpreter mode ***
Thu Jun 8 00:00:41 2017 - spawned uWSGI master process (pid: 14498)
Thu Jun 8 00:00:41 2017 - spawned uWSGI worker 1 (pid: 14504, cores: 1)
Thu Jun 8 00:00:41 2017 - spawned uWSGI worker 2 (pid: 14505, cores: 1)
Thu Jun 8 00:00:43 2017 - --- no python application found, check your startup logs for errors ---
[pid: 14505|app: -1|req: -1/1] 172.16.72.2 () {46 vars in 726 bytes} [Thu Jun 8 00:00:43 2017] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0)
此处/etc/uwsgi/apps-enabled/myproj.ini
:
[uwsgi]
plugins = python3
venv = /srv/http/myproj/env
chdir = /srv/http/myproj
module = myproj:myproj
callable = app
我也尝试将module
设置为myproj
(在uwsgi日志中没有变化)和myproj.myproj
(由于无法找到模块,因此不太成功myproj.myproj
)。
此处/srv/http/myproj/myproj/myproj.py
:
import flask
app = flask.Flask(__name__)
此处/srv/http/myproj/myproj/__init__.py
:
from myproj.myproj import app
此处/etc/nginx/sites-enabled/myproj
:
upstream myproj {
server unix:///run/uwsgi/app/myproj/socket fail_timeout=0;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location / {
uwsgi_pass myproj;
include /etc/nginx/uwsgi_params;
}
}
我想我的问题很简单:我做错了什么?
编辑:如果重要:
# lsb_release -d
Description: Ubuntu 16.04.2 LTS
答案 0 :(得分:2)
在查看类似结构的项目后,我找到了解决方案。这是解决问题的新文件:
[uwsgi]
plugins = python3
venv = /srv/http/myproj/env
chdir = /srv/http/myproj/myproj
pythonpath = ..
module = myproj
callable = app
基本上,我需要我的chdir更深一层(因此模块不会深一层)。
编辑:最后,为了让我的项目中的导入正常工作,我还需要添加上面看到的pythonpath行。
答案 1 :(得分:0)
请检查uwsgi进程是否具有wsgi.py
的读取权限