我正在尝试配置 uwsgi,并且在此过程中它在我必须运行的教程中说
uwsgi -s /tmp/uwsgi.sock -w myapp:app
问题是 -w 是一个无效的选项。谁能帮我指出为什么或我应该做什么?
谢谢
也许您正在使用 debian 提供的软件包。它们是完全模块化的,因此您需要安装/加载所需的插件:
我的 uwsgi 应用程序配置看起来像这样
/etc/uwsgi/apps-enabled/mysite.ini
[uwsgi]
socket=/tmp/uwsgi_mysite.sock
chmod-socket=666
abstract-socket=false
master=true
workers=2
uid=altera
gid=altera
chdir=/home/altera/www/mysite ; Current dir
pp=/home/altera/www/mysite ; Python Path (to your application)
pyhome=/home/altera/vpy/mysite ; Path to virtual environment
plugins=python3
module=main ; *.py file name application starting from
post-buffering=8192
/etc/nginx/sites-available/mysite
server {
server_name mysite;
root /home/altera/www/mysite;
location / {
include uwsgi_params;
uwsgi_pass unix:/tmp/uwsgi_mysite.sock;
}
}