I am trying to deploy a flash application that I developed using cherokee and uwsgi. I have cherokee and uwsgi installed and working (I think uwsgi is working), but when I configure the application in cherokee, I just get an error message uWSGI Error wsgi application not found. I used the xml configuration file (I think you need with cherokee) and this contains the following:
<uwsgi>
<pythonpath>/srv/mobile-site/app/</pythonpath>
<app mountpoint="/">
<module>mobilecms</module>
<callable>app</callable>
</app>
</uwsgi>
My flash drive application is located in the folder /srv/mobile-site/app/with the main script mobilecms.py.
Is there something wrong with this file? Are there permission errors? Thanks in advance for your help!
source
share