我正在尝试部署我使用 cherokee 和 uwsgi 开发的烧瓶网络应用程序。我安装了 cherokee 和 uwsgi 并且可以正常工作(我认为 uwsgi 可以工作),但是当我在 cherokee 中配置应用程序时,我只是收到一条错误消息uWSGI Error wsgi application not found
。我使用了一个 xml 配置文件(我认为您需要使用 cherokee),其中包含以下内容:
<uwsgi>
<pythonpath>/srv/mobile-site/app/</pythonpath>
<app mountpoint="/">
<module>mobilecms</module>
<callable>app</callable>
</app>
</uwsgi>
我的烧瓶应用程序显然位于/srv/mobile-site/app/
主脚本为mobilecms.py
.
这个文件有问题吗?权限错误会导致这种情况吗?提前感谢您的帮助!