Nginx reverse proxy and load balancing practice

Nginx reverse proxy and load balancing practice

Reverse Proxy

Reverse proxy refers to receiving the user's access request through a proxy server, re-initiating the request to the internal server on behalf of the user, and finally returning the response information of the internal server to the user. In this way, the proxy server appears to the outside world as a server, and the client accessing the internal server uses the proxy server instead of the real website access user.

Why use a reverse proxy

  • It can protect the security of the website because any request from the Internet must first pass through the proxy server.
  • Speed ​​up web requests by caching static resources.
  • Implementing load balancing

Reverse proxy example

Environmental Description

Suppose there are two servers AB. Server A provides web resources and is only accessible to the intranet. Server B has two network cards, one is in the same intranet as server A, and the other is in the external network. At this point, it is not possible for user C to directly access server A. At this time, the request of user C can be accessed through server B.

hostname Network Card IP illustrate
moli-04 ens33 192.168.30.6 Intranet IP, proxy server
moli-04 ens37 192.168.93.129 External IP, proxy server
moli-05 ens33 192.168.30.7 Intranet Server

  • Install nginx on both machines
  • The moli-05 server access is a WordPress blog, domain name blog.syushin.org
  • In the virtual machine experimental environment, all firewalls are turned off.

Configuring Virtual Hosts

Edit the virtual host configuration file on the moli-04 machine. The content is as follows:

[root@moli-04 extra]$ cat blog.syushin.org.conf 
server{
 listen 80;
 server_name blog.syushin.org;
 
 location / {
  proxy_pass http://192.168.30.7;
  proxy_set_header Host $host;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 } 
}

Change the hosts file

Modify the hosts file on Windows and add configuration

192.168.93.129 blog.syushin.org

Browser Testing

The access address is 192.168.93.129, and the page of machine 05 appears on the interface, and the configuration is successful.

Load Balancing

Load balancing function

  • Scheduling and managing user access requests
  • Share the pressure of user access requests

When a load balancing cluster is running, it generally sends client access requests to a group of backend servers through one or more front-end load balancers.

Nginx Load Balancing

Strictly speaking, Nginx is only used as a reverse proxy of Nginx Proxy, but because the effect of this reverse proxy function is the effect of a load balancing machine, nginx load balancing is a special reverse proxy.

The main components for implementing Nginx load balancing are:

Nginx modules illustrate
ngx_http_proxy_module Proxy module, used to send requests to server nodes or upstream server pools
ngx_http_upstream_module The load balancing module can realize the load balancing function of the website and the health check of the node

Upstream module introduction

The proxy methods supported by the ngx_http_upstream_module module include proxy_pass, fastcgi_pass, etc., and proxy_pass is mainly used.

The upstream module allows nginx to define one or more groups of node server groups. When used, the website request is sent to the defined corresponding node group through the proxy_pass proxy.

Example: Creating a Node Server Pool

upstream blog
 server 192.168.30.5:80 weight=5;
 server 192.168.30.6:81 weight=10;
 server 192.168.30.7:82 weight=15;
}

upstream : A keyword for creating a node server group, required;
blog : The name of the node server group, required, and can be customized;
server : keyword, followed by IP or domain name or IP:port. If the port is not specified, the default value is 80.
weight : weight. The larger the value, the more requests are allocated. Default is 1

In addition to weight, the status value of the node server can also be set as:
max_fails : The default number of request failures allowed is 1. When the maximum number is exceeded, an error defined by the proxy_next_upstream module is returned.
fail_timeout : The pause time after max_fails failures.
down : Indicates that the current node server does not participate in the load, indicating that the machine is never available. It can be used with iP_hash
backup : When all other non-backup machines are down or busy, request the backup machine. So this machine will have the lightest pressure.

Use the domain name upstream

upstream blog2{
 server www.syushin.com weight=5;
 server blog.syushin.org down;
 server blog.syushin.cc backup;
}

Scheduling Algorithm

rr polling (default scheduling algorithm, static scheduling algorithm)

Distribute client requests to different backend node servers one by one according to the order of client requests.

wrr (weighted round-robin, static scheduling algorithm)

Weights are added on the basis of rr polling. When using this algorithm, the weight is proportional to user access. The larger the weight value, the more requests are forwarded.
For example, if there are 30 requests and two servers A (10.0.0.1) and B (10.0.0.2), if you want A to handle 10 requests and B to handle 20 requests, you can define it like this:

upstream pools{
 server 10.0.0.1 weight=1;
 server 10.0.0.2 weight=2;
}

ip_hash (static scheduling algorithm)

Each request is assigned according to the hash result of the client IP. When a new request arrives, the client IP is first hashed into a value through a hash algorithm. In subsequent client requests, as long as the hash value of the client IP is the same, it will be assigned to the same server.

upstream blog_pool{
 ip_hash;
 server 192.168.30.5:80;
 server 192.168.30.6:8090;
}

Note: When using ip_hash, weight and backup are not allowed.

least_conn algorithm

The least_conn algorithm determines the distribution based on the number of connections to the backend servers, and the server with the least number of connections will be assigned more requests.

In addition to the (commonly used) scheduling algorithms listed above, there are many more, which are not listed here one by one.

http_proxy_module module

http_proxy_module can forward requests to another server. In the reverse proxy, the specified URI will be matched through the location function, and then the requests that match the matching URI will be thrown to the defined upstream node pool through proxy_pass.

http_proxy module parameters

parameter illustrate
proxy_set_header Set the HTTP request header item to the backend server node, for example: to enable the proxy backend server node to obtain the real IP address of the access client user
client_body_buffer_size Used to specify the client request body buffer size
proxy_connect_timeout Indicates the timeout period for the reverse proxy backend node server connection, that is, the timeout period for initiating a handshake and waiting for a response
proxy_send_timeout Indicates the data transmission time of the proxy backend server, that is, the backend server must transmit all data within the specified time, otherwise nginx will disconnect the connection
proxy_read_timeout Set the time for nginx to obtain information from the proxy's backend server. This means that after the connection is successfully established, nginx waits for the response of the backend server. In fact, it is the time that nginx has entered the backend queue and is waiting for processing.
proxy_buffer_size Set the buffer size. By default, the buffer size is equal to the size set by the proxy_buffers directive.
proxy_buffers Set the number and size of the buffer. The response information obtained by nginx from the proxy backend server will be set to the buffer
proxy_busy_buffers_size Used to set the size of proxy_buffers that can be used when the server is busy. The officially recommended size is proxy_buffers * 2
proxy_trmp_file_write_size Specify the size of temporary proxy cache files

Proxy_pass usage

Format: proxy_pass URL;

Here is an example:

proxy_pass http://blog.syushin.com/;
proxy_pass http://192.168.30.7:8080/uri;
proxy_pass http://tmp/www.sock;

The URL can be a domain name, an IP address, or a socket file.

There are a few things to note about the proxy_pass configuration:
Example 1

location /upload/ {
proxy_pass http://192.168.30.7;
}

Example 2

location /upload/ {
proxy_pass http://192.168.30.7/; # Note the extra slash
}

Example 3

location /upload/ {
proxy_pass http://192.168.30.7/blog/;
}

Example 4

location /upload/ {
proxy_pass http://192.168.30.7/blog;
}

If server_name is blog.syushin.com, when requesting http://blog.syushin.com/uploa..., the request result of example 1-4 above is:

Example 1: http://192.168.30.7/upload/index.html
Example 2: http://192.168.30.7/index.html
Example 3: http://192.168.30.7/blog/index.html
Example 4: http://192.168.30.7/blogindex.html

Okay, that’s all for this article. I hope you will support 123WORDPRESS.COM in the future.

You may also be interested in:
  • A brief discussion on Nginx seven-layer reverse proxy and load balancing
  • Detailed explanation of Nginx load balancing and reverse proxy configuration and optimization
  • Explanation of nginx load balancing and reverse proxy
  • Example of using nginx as a reverse proxy to achieve load balancing
  • Nginx reverse proxy and load balancing concept understanding and module usage

<<:  Detailed analysis of binlog_format mode and configuration in MySQL

>>:  React implementation example using Amap (react-amap)

Recommend

A detailed introduction to Linux file permissions

The excellence of Linux lies in its multi-user, m...

MySQL Optimization: Cache Optimization (Continued)

There are caches everywhere inside MySQL. When I ...

Vue implements local storage add, delete and modify functions

This article example shares the specific code of ...

Solution to 2059 error when connecting Navicat to MySQL

Recently, when I was learning Django, I needed to...

In-depth explanation of modes and environment variables in Vue CLI

Preface In the development of actual projects, we...

Solve the group by query problem after upgrading Mysql to 5.7

Find the problem After upgrading MySQL to MySQL 5...

Detailed discussion of memory and variable storage in JS

Table of contents Preface JS Magic Number Storing...

How to Set Shortcut Icons in Linux

Preface Creating shortcuts in Linux can open appl...

Detailed explanation of the principle and function of JavaScript closure

Table of contents Introduction Uses of closures C...

How to build and deploy Node project with Docker

Table of contents What is Docker Client-side Dock...

How to install MySQL database on Debian 9 system

Preface Seeing the title, everyone should be thin...

Vue encapsulation component upload picture component

This article example shares the specific code of ...

Take you to a thorough understanding of the prototype object in JavaScript

Table of contents 1. What is a prototype? 1.1 Fun...

Example code for implementing 3D text hover effect using CSS3

This article introduces the sample code of CSS3 t...