Andrew Dassandrewdass.hashnode.dev·Aug 26, 2023How to Run GunicornOverview This article will explain how to run Gunicorn (1) to deploy a Flask application. What is Gunicorn Gunicorn is a Python WSGI HTTP Server for UNIX. It is compatible with many web frameworks. Gunicorn only runs on UNIX or Linux, therefore for o...Discuss·29 readsGunicorn
Backend Bytebackendbyte.com·Aug 13, 2023Seamless Deployment of Django: Unlocking Efficiency with Gunicorn, Nginx, PostgreSQL, and Ubuntu - Part 1Recently, I deployed a full-stack Django application on a Ubuntu server. During the deployment process, I faced some issues in configuring everything on a production-ready server, mostly in configuring NGINX. I encountered the common error ‘502 Bad G...Discuss·98 readsNginx configuration guide
Naveen Sainiblog.unicornfortunes.com·Jul 26, 2023How to host Django Application using gunicorn & nginx in ProductionIn this post, we will see how to use Nginx with Gunicorn to serve Django applications in production. Django is a very powerful web framework and ships with a server that is able to facilitate development. This development server is not scalable and ...DiscussDjango
Sarthak Shahsarthakshah.hashnode.dev·May 31, 2023The Dynamic Duo: Harnessing the Strengths of Nginx and Gunicorn for Flask/Django/FastAPI App HostingIn the wild world of web development, every superhero needs a sidekick. Enter Nginx and Gunicorn, the dynamic duo that brings out the best in Flask, Django, and FastAPI app hosting. Like Batman and Robin or Peanut Butter and Jelly, Nginx and Gunicorn...Discuss·80 readsnginx
Rashid Mahmoodcodewithrashid.hashnode.dev·May 28, 2023A brief overview of WSGI and usage of Gunicorn and Nginx in DjangoThis article will briefly explain the functionality and usage of WSGI, Gunicorn and Nginx in collaboration with Django. It will help you to understand the process of deploying Django applications on the server and will clarify the role of WSGI file. ...Discuss·81 readsPython
Deep Techdeeptech.hashnode.dev·Apr 10, 2023Python - Different WSGI and ASGI Running PerformanceThe blog post aims to give an account of the problem statement where I had to compare the performance of different worker modes of gunicorn to be able to come up with the worker mode to be used for different nature of workloads. This blog demonstrate...Discuss·205 readsGunicorn
Akash Ojhatechblog.akashojha.com·Dec 17, 2022Deploy a Django application using Gunicorn and NginxDifferences by responsibility Django is a web framework used to build web applications. Gunicorn is an application server which transfers HTTP requests to web applications. It implements WSGI (Web Server Gateway Interface) which works as an interface...Discuss·89 readsDjango
Marwan Fazoramarawan.hashnode.dev·Dec 5, 2022Deploy django project using NGINX and GunicornDeploy django project using NGINX and Gunicorn Requirements: NGINX Gunicorn Prepare environment: Install pip: sudo apt-get install python3-pip Install virtualenv: sudo pip3 install virtualenv Create directory for the project: mkdir project_n...Discuss·196 readsDjango
Abdulrahman Olamilekanscheele.hashnode.dev·Aug 31, 2022Build a dockerized FastAPI application with poetry and gunicorn.Prerequisites Python3 docker docker-compose Setup FastAPI application Why use Poetry for dependency and virtual environment management instead of pip and it's equilvalent python setups Many developers loved the experience provided by Yarn and Npm i...Discuss·5 likes·5.6K readsFastAPI
Flask Indiaflask-india.hashnode.dev·Jun 5, 2022Run your Flask App in Production...Introduction: Well, we have seen how to create our first Flask Application which is quite easy to set up. If you haven't done it yet then please check our Hello World article Why do we need something extra? Of course, Flask does come with an inbuilt ...Discuss·418 readsFlask-India Tutorial SeriesFlask Framework