Nginx configuration reverse proxy and load balancer

Source: Internet
Author: User
Tags nginx reverse proxy

One, reverse proxy

Description: There should be an Nginx server with multiple application servers (which can be Tomcat), this article uses a virtual machine, installs an nginx, multiple tomcat, to simulate

Upstream Tomcats{server 192.168.25.148:8080;server 192.168.25.148:8081;} server {        listen       ;        server_name  tomcat.taotao.com;        #charset Koi8-r;        #access_log  logs/host.access.log  main;        Location/{            proxy_pass   http://tomcats;            Index  index.html index.htm;        }}

Second, load Balancing

Note: You only need to add a weight behind the upstream server to represent the weights. The higher the weight, the more the number of allocation requests. The default weight is 1

Upstream tomcats{server 192.168.0.11:8080 weight=2;server 192.168.0.11:8081;} server {        listen       ;        server_name  tomcat.taotao.com;        #charset Koi8-r;                #access_log  logs/host.access.log  main;                Location/{            proxy_pass  http://tomcats;            Index  index.html index.htm;        }}

At this point the simple nginx reverse proxy and load balancer configuration end ...

Nginx configuration reverse proxy and load balancer

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.