I want to run my uwsgi server with https. Yes, I know it is a wrong thing to do in production.
The docs clearly say: configure your keys and use --https
option: http://uwsgi-docs.readthedocs.org/en/latest/HTTPS.html
Problem is, no such option exists, apparently:
$ uwsgi --ini uwsgi.ini --https 0.0.0.0:8443,~/my.crt,~/my.key
[uWSGI] getting INI configuration from uwsgi.ini
uwsgi: unrecognized option '--https'
getopt_long() error
$ uwsgi --version
2.0.11
What am I missing here?