no python application found 2c check your startup logs for errors

Solutions on MaxInterview for no python application found 2c check your startup logs for errors by the best coders in the world

showing results for - "no python application found 2c check your startup logs for errors"
Giada
12 Apr 2019
1I have solved this
2
3in my original command line did not include full path to the wsgi.py file to run uWSGI
4
5uwsgi --http :8000 --chdir /srv/www/databankinfo.com/projectdatabank/ --wsgi-file wsgi.py
6to this
7
8uwsgi --http :8000 --chdir /srv/www/databankinfo.com/projectdatabank/ --wsgi-file full/path/wsgi.py
9and it worked