Deploy Django app on AWS
Deploy and host a django application on AWS EC2 instance using Nginx as the webserver and Gunicorn as WSGI
Nginx is an open-source web server that, since its success as a web server, is now also used as a reverse proxy , HTTP cache, and load balancer.
WSGI used to forward request from a web server to a python backend.
[Read More]