Uwsgi Unrecognized Option '--wsgi-file'
I attempted to perform a run using uwsgi on a simple test file. This follows the instructions from 'this link'. However, it is throwing an error: unrecognized option '--wsgi-file'
Solution 1:
The thing that helps me is the option in comand line: --plugin python.
Solution 2:
You need to install uwsgi
plugin for python first. For Ubuntu you can do it by:
sudo apt-get install uwsgi-plugin-python
Post a Comment for "Uwsgi Unrecognized Option '--wsgi-file'"