📌  相关文章
📜  未找到 python 应用程序,请检查您的启动日志是否有错误 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:03.871000             🧑  作者: Mango

代码示例1
I have solved this

in my original command line did not include full path to the wsgi.py file to run uWSGI

uwsgi --http :8000 --chdir /srv/www/databankinfo.com/projectdatabank/ --wsgi-file wsgi.py
to this

uwsgi --http :8000 --chdir /srv/www/databankinfo.com/projectdatabank/ --wsgi-file full/path/wsgi.py
and it worked