Setting up NGINX for HTTP load balancing. Nginx server is running as below. nginx-server : nginx.server.com //nginx Below are the 3 server which run a web application which needs to be load balanced. Server1 : node1.application.com //web_server Server2 : node2.application.com //web_server Server3 : node3.application.com //web_server Install NGINX on RHEL/Centos6 Step 1 : Create a Repo. in [ vim /etc/yum.repos.d/nginx.repo ] CENTOS6 [nginx] name=nginx repo baseurl= http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 RHEL: [nginx] name=nginx repo baseurl= http://nginx.org/packages/rhel/$releasever/$basearch/ gpgcheck=0 enabled=1 Step 2 : Installation [ahmed@ngnix ~]$ sudo yum install nginx Step 3 : Configuration: sudo vim /etc/nginx/nginx.conf #------BEGIN CONFIG------------ user nginx; worker_processes 1; error_log /var/log/nginx/error.l...