Category: nginx

We’ve all been here: You’ve built out the perfect web-app, end-point, or application — all of the buttons are up and you are finally ready to deploy your software into production! While this is an exciting endeavor, it also presents many questions on the tech-stack that you might want to use to get your software out there for use by the masses.

It is also incredibly light on resources, and that in tandem with worker management means that you can set the priority of certain endpoints and retain performance on your servers for where it is needed most! Another significant advantage to using Gunicorn is that it is the only WSGI web-server for Python that is compatible with almost everything.

This is partially because it partners so well with Flask and NGINX, but also contributed to by its lightweight nature, which is something I look for in most of my web-development with Python endeavors.

Related Articles