I'm quite new to this and I was quite curious. A lot of Django app deployments over Amazon's EC2 use HTTP servers NGINX and Gunicorn. I was wondering what they actually do and why both are used in parallel. What is the purpose of running them both in parallel? Thank you for taking the time to answer this, much appreciated!
|
They aren't used in parallel. NGinx is a reverse proxy. It's first in line. It accepts incoming connections and decides where they should go next. It also (usually) serves static media such as CSS, JS and images. Gunicorn is the next layer and is an application server. Nginx see that the incoming connection is for
Gunicorns job is to manage and run the django instance(s) (like The contrast to this setup is to use Apache with the mod_wsgi module. In this situation, the application server is actually a part of Apache, running as a module. |
||||
|
|
