How to Install & Configure Nginx web service on Ubuntu 20.04 LTS.

Web Server is a open-source software that means we can easily used and modified freely.We can easily install & configure web servers like Nginx. The basic objective of the web server is to store, process and deliver web pages to the users. This intercommunication is done using Hypertext Transfer Protocol (HTTP).We can easily create an …

How to Install and Deploy python django application using Nginx and Postgres in Ubuntu

Prerequisites : 1- Postgres database 2- Nginx 3- Gunicorn Step 1: After installed Python 3.6 and upgraded the pip version with the following command. sudo -H pip3 install –upgrade pip   Step 2: Install and create a python environment with the name of env inside a workstation folder. cd /opt/workstation sudo -H pip install virtualenv python3.6 …

Install and Configure Nginx as load-balancer in Linux.

Nginx is one of the powerful web servers which is used to host multiple websites or creating a reverse proxy/load-balancer or both. In most of the cases, a load-balancer is used to configure highly available web applications and to minimize the downtime due to any failure. In this blog, we are going to create a …

How to deploy Python framework application using uwsgi in Ubuntu 18.04

  Introduction  In this blog we learn to deploy a python based frameworks deployment on ubuntu 18.04 server and how to setup nginx and uwsgi application on the server. We will launch the application and configure the front-end of nginx server and back-end for the uwsgi. Prerequisites Lets started the blog you have to setup some …