Load Balancing using Nginx on AWS EC2



Load Balancing using Nginx on AWS EC2

Load Balancing using Nginx on AWS EC2

*Discount on my udemy course on computer vision with Python and OpenCV: https://www.udemy.com/hands-on-computer-vision-with-opencv-python/?couponCode=OPENCV_YT_DEAL

*Nginx configuration file: http://collabedit.com/f63ds

events {
worker_connections 768;
}

http {
upstream myapp
{
server Server_1_Address weight=1;
server Server_2_Address weight=2;
}

#These are my settings SHROBON
server {
listen 80;
location / {
proxy_pass http://myapp;
}
}
}

Sponsored Links
——————-
*Hosting free web hosting link: http://in.hostg.co/16494

*Install Loom to make screencasting easy: https://www.useloom.com?ref=328865

*Sound credits: bensound.com

Comments are closed.