How to configure Nginx load balancing

How to configure Nginx load balancing

Nginx load balancing configuration

It is also relatively simple to configure load balancing using nginx

First, configure the address corresponding to the virtual domain name in the http block

# Load balancing upstream myserver {
 server 127.0.0.1:8080;
 server 127.0.0.1:8082;
}

Then configure the listener in the server block

server {
 listen 9000;
 server_name localhost;

 location / {
  root html;
  index index.html index.htm;
  # Corresponding to the name proxy_pass http://myserver configured in the upstream above;
  
  ### The following are minor items of concern proxy_set_header Host $host;
  proxy_method POST;

   #Specify the header field that is not forwarded proxy_hide_header Cache-Control;

   #Specify the forwarding header field proxy_pass_header Server-IP;

   # Whether to forward the package body proxy_pass_request_body on | off;

   # Whether to forward headers proxy_pass_request_headers on | off;

   # Visible/invisible URI, when upstream redirection occurs, whether Nginx changes the URI synchronously
  proxy_redirect on | off;
 }
}

In this way, when accessing the server using port 9000, load calls will be made to port 8080 and 8082.

Nginx load balancing strategy

Polling (default)

Distribute them to different servers one by one in chronological order. If the backend server crashes, they will be automatically deleted.

Weight

Weight represents the weight, the default value is 1, the larger the weight, the more requests are allocated

# Load balancing upstream myserver {
 server 127.0.0.1:8080 weight=1;
 server 127.0.0.1:8082 weight=2;
}

ip_hash

Each request is hashed according to the accessed IP address, so that each visitor accesses a certain server, which can solve the session problem.

# Load balancing upstream myserver {
  ip_hash;
 server 127.0.0.1:8080;
 server 127.0.0.1:8082;
}

fair (third party)

Assign according to the response time of the request, which server responds faster is assigned to whom

The above is the details of how to configure load balancing in Nginx. For more information about configuring load balancing in Nginx, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • 4 configuration examples of Nginx load balancing
  • Nginx load balancing configuration, automatic switching mode when downtime occurs
  • Nginx load balancing configuration simple configuration method
  • 5 ways to configure nginx load balancing
  • Analysis of Nginx cluster load balancing configuration process
  • Nginx simple load balancing configuration example
  • Detailed explanation of Linux system configuration nginx load balancing
  • Simple configuration method of nginx load balancing
  • Super detailed nginx load balancing configuration

<<:  Pure CSS to achieve the water drop animation button in Material Design

>>:  Vue realizes the function of book shopping cart

Recommend

How to implement one-click deployment of nfs in linux

Server Information Management server: m01 172.16....

Use vue to implement handwritten signature function

Personal implementation screenshots: Install: npm...

Detailed discussion of the character order of mysql order by in (recommended)

//MySQL statement SELECT * FROM `MyTable` WHERE `...

Analyze how a SQL query statement is executed in MySQL

Table of contents 1. Overview of MySQL Logical Ar...

A simple way to build a Docker environment

First, let’s understand what Docker is? Docker is...

Sample code for generating QR code using js

Some time ago, the project needed to develop the ...

Why Use DOCTYPE HTML

You know that without it, the browser will use qui...

Introduction to JavaScript Number and Math Objects

Table of contents 1. Number in JavaScript 2. Math...

A brief understanding of MySQL SELECT execution order

The complete syntax of the SELECT statement is: (...

JavaScript Objects (details)

Table of contents JavaScript Objects 1. Definitio...

MySQL-group-replication configuration steps (recommended)

MySQL-Group-Replication is a new feature develope...

Vue implements paging function

This article example shares the specific code of ...