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 80152. Change the start port number to 8081Now 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:
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:
|
<<: Select web page drop-down list and div layer covering problem
>>: In-depth understanding of the use of r2dbc in MySQL
My environment: 3 centos7.5 1804 master 192.168.1...
Preface The similarities and differences between ...
(?i) means do not match case. Replace all uppercas...
Table of contents Preface What is metadata Refere...
This article shares the specific code for JavaScr...
I love coding, it makes me happy! Hello everyone,...
1. Download and install Download the community ed...
1: Check the PHP version after entering the termi...
From the tomcat configuration file, we can see th...
Putting aside databases, what is dialect in life?...
Table of contents Preface: Specific operations St...
Create Table create table table name create table...
Preface In the last issue, we explained LinearLay...
Table of contents Basic concepts of components Th...
Table of contents What is multi-environment confi...