is currently developing a Django project. If you want to use gunicorn as a http server, and then use nginx as a reverse proxy, you will eventually need to use https.
my question is:
- can I run a statement like
gunicorn my_project:wsgi
to open the http server without making any changes to the Django project, and then use nginx to manage https things? - if you can, do you just need to configure nginx? If not, where should I add configuration information?