How to implement Nginx reverse proxy for multiple servers

How to implement Nginx reverse proxy for multiple servers

Nginx reverse proxy multiple servers, which means that when we initiate different requests to nginx, nginx will forward them to different servers according to the different requests. As shown in the figure below, when we access resource a through port 8000, nginx will forward the request to server 8080, and when accessing resource b, it will forward it to server 8081.

Let's do some preparation first. First, prepare two tomcat servers, port 8080 and port 8081. Port 8080 is the default. Here we modify port 8081. First, we go to the conf directory under tomcat, enter the server.xml file and make the following two changes:

1. Change the shutdown port number to 8015

2. Change the start port number to 8081

Now we have two tomcats. Next, we start the two tomcats to see if they can be accessed. If not, it may be a problem with your firewall. systemctl stop firewalld can shut down the firewall. If still not accessible, it may be that Alibaba Cloud has not opened the port.

When your tomcat can be accessed normally, we deploy resource a on server 8080 and resource b on server 8081. The specific deployment is to create directories a and b respectively in the webapps directory under tomcat, and create index.html, write 8080 and 8081 respectively in it, for the convenience of testing later. Here is resource a

OK, the next step is to configure nginx. Go to the conf directory of nginx, open the nginx.conf file, and manually configure a server block

The server means:

  • listen 8000: listen to port 8000, which is the nginx port we directly access
  • server_name localhost: is the domain name
  • location ~ /a/: all requests to access resource a will be forwarded through the following proxy
  • http://39.106.231.3:8080; means the proxy forwards to the 8080 server under the host with the IP address 39.106.231.3

After configuration, execute ./nginx -s reload in the sbin directory to reload the configuration file.

Access: 39.106.231.3:8000/a

Access: 39.106.231.3:8000/b

This is the end of this article about how to implement Nginx reverse proxy for multiple servers. For more relevant Nginx reverse proxy server content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Explanation of nginx load balancing and reverse proxy
  • Getting Started with Nginx Reverse Proxy
  • Nginx reverse proxy configuration to remove prefix case tutorial
  • Full process record of Nginx reverse proxy configuration
  • About nginx to implement jira reverse proxy

<<:  Select web page drop-down list and div layer covering problem

>>:  In-depth understanding of the use of r2dbc in MySQL

Recommend

Centos builds chrony time synchronization server process diagram

My environment: 3 centos7.5 1804 master 192.168.1...

7 interesting ways to achieve hidden elements in CSS

Preface The similarities and differences between ...

How to replace all tags in html text

(?i) means do not match case. Replace all uppercas...

Metadata Extraction Example Analysis of MySQL and Oracle

Table of contents Preface What is metadata Refere...

JavaScript implements the nine-grid mobile puzzle game

This article shares the specific code for JavaScr...

Implementation of CSS3 3D cool cube transformation animation

I love coding, it makes me happy! Hello everyone,...

Detailed installation and configuration of MySql on Mac

1. Download and install Download the community ed...

Practical method of upgrading PHP to 5.6 in Linux

1: Check the PHP version after entering the termi...

Detailed explanation of the functions of each port of Tomcat

From the tomcat configuration file, we can see th...

A brief introduction to MySQL dialect

Putting aside databases, what is dialect in life?...

How to use CocosCreator object pool

Table of contents Preface: Specific operations St...

Basic operations of mysql learning notes table

Create Table create table table name create table...

The use of FrameLayout in six layouts

Preface In the last issue, we explained LinearLay...

Detailed explanation of the basic knowledge of front-end componentization

Table of contents Basic concepts of components Th...

Implementation of multi-environment configuration (.env) of vue project

Table of contents What is multi-environment confi...