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 …
Read more “Install and Configure Nginx as load-balancer in Linux.”
How to Create Data Shares in Microsoft azure.
Azure Data Share is a PaaS solution on Azure that gives us the ability to share organizational datasets with multiple parties, such as customers or partners, while having the control to manage and monitor the data. With Azure Data Share, we can use several services on Azure to share datasets, such as storage accounts or …
How to Create Virtual Network Gateways in Microsoft azure.
A VPN gateway is a specific type of virtual network gateway that is used to send encrypted traffic between an Azure virtual network and an on-premises location over the public Internet. You can also use a VPN gateway to send encrypted traffic between Azure virtual networks over the Microsoft network. Login to azure portal. Click on All Services. Select Virtual Network Gateways. Click …
Read more “How to Create Virtual Network Gateways in Microsoft azure.”
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 …
Read more “How to deploy Python framework application using uwsgi in Ubuntu 18.04”
How to setup a Redis cluster with Sentinel (comes with Redis) and HAProxy on Ubuntu 18.04
Redis provides high availability via Redis Sentinel distributed system. Sentinel helps to monitor Redis instances, detect failures and will do roles switches automatically thus enabling a Redis deployment to resist any kind of failures. Redis – A fast key/value storage engine Sentinel – Keeps track of Master/Slave machines and promotes and demotes them when VMs go down or go offline HAProxy – A proxy …