Two modules for using nginx for load balancing:
Interpretation of upstream module The load balancing function of nginx depends on the ngx_http_upstream_module module. The supported proxy methods are proxy_pass (generally used for reverse proxy), fastcgi_pass (generally used for interaction with dynamic programs), memcached_pass, proxy_next_upstream, fastcgi_next_pass, memcached_next_pass. The upstream module should be placed within the http{} tag. Module writing: upstream backend { ip_hash; server backend1.example.com weight=5; server backend2.example.com:8080; server backup1.example.com:8080 backup; server backup2.example.com:8080 backup; } Example 1: upstream dynamic zone upstream_dynamic 64k; server backend1.example.com weight=5; server backend2.example.com:8080 fail_timeout=5s slow_start=30s; server 192.0.2.1 max_fails=3; server backend3.example.com resolve; server backup1.example.com:8080 backup; server backup2.example.com:8080 backup; } Syntax explanation: Nginx supports four scheduling algorithms by default
How to write server module Server IP scheduling status The server directive specifies the backend server IP address and port, and can also set the status of each backend server in the load balancing scheduling.
fail_timeout, the time to suspend service after max_fails failures. JD.com is 3s, ChinaCache is 3s, configured according to business needs. 2-3 seconds is reasonable for routine business. If server connects to a domain name, a DNS server is required on the intranet, or domain name resolution is performed in the hosts file of the load balancer. The server can also be directly connected to the IP or IP plus port. Long connection keepalive upstream backend { server backend2.example.com:8080; server backup1.example.com:8080 backup; keepalive 100; } This directive configures the maximum number of idle connections that each worker process can cache with the upstream server. location / { # Support keep-alive proxy_http_version 1.1; proxy_set_header Connection ""; proxy_pass http://backup; }
Connection pool configuration recommendations
The idle connection pool is too small, the connections are insufficient, and connections need to be continuously established. Location Module Interpretation Location function: Set the URI based on a directive. Basic syntax: Syntax: location [ = | ~ | ~* | ^~ ] uri { ... } location @name { ... } Default: — Context: server, location
The matching is based on priority and is not performed according to the nginx configuration file. Official example: location = / { [ configuration A ] } location / { [ configuration B ] } location /documents/ { [ configuration C ] } location ^~ /images/ { [ configuration D ] } location ~* \.(gif|jpg|jpeg)$ { [ configuration E ] } in conclusion:
Test example: location / { return 401; } location = / { return 402; } location /documents/ { return 403; } location ^~ /images/ { return 404; } location ~* \.(gif|jpg|jpeg)$ { return 500; } Test results (focus on): [root@lb01 conf]# curl -I -s -o /dev/null -w "%{http_code}\n" http://10.0.0.7/ 402 [root@lb01 conf]# curl -I -s -o /dev/null -w "%{http_code}\n" http://10.0.0.7/index.html 401 [root@lb01 conf]# curl -I -s -o /dev/null -w "%{http_code}\n" http://10.0.0.7/documents/document.html 403 [root@lb01 conf]# curl -I -s -o /dev/null -w "%{http_code}\n" upload/2022/web/1.gif 404 [root@lb01 conf]# curl -I -s -o /dev/null -w "%{http_code}\n" upload/2022/web/1.gif 500 Summary of results: Matching priority order, =>^~ (matches a fixed string, ignoring regular expressions) > completely equal >~* > empty >/. Try to put '=' in front when working Proxy_pass module explanation The proxy_pass directive belongs to the ngx_http_proxy_module module, which can forward requests to another server. Writing method: Example 1: upstream blog_real_servers { server 10.0.0.9:80 weight=5; server 10.0.0.10:80 weight=10; server 10.0.0.19:82 weight=15; } server { listen 80; server_name blog.etiantian.org; location / { proxy_pass http://blog_real_servers; proxy_set_header host $host; } }
Configure the backend server to receive the real frontend IP The configuration is as follows: log_format commonlog '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; httpd.conf configuration of rs_apache node LogFormat "\"%{X-Forwarded-For}i\" %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{U ser-Agent}i\"" combined modify logging apache LogFormat "\"%{X-Forwarded-For}i\" %l %u %t \"%r\" %>s %b" common Optimization parameters related to proxy_pass
Health Check Nginx provides the health_check statement to provide a key health check mechanism during load (upstream) (Note: this statement needs to be set in the location context). Supported parameters are:
A simple setup is as follows, using the default values: location / { proxy_pass http://backend; health_check; } For the application, we can define a dedicated API for health check: /api/health_check, and only return the HTTP status code 200. And set the interval value between two checks to 1 second. Thus, the configuration of the health_check statement is as follows: health_check uri="/api/health_check" interval; Matching method http { server { ... location / { proxy_pass http://backend; health_check match=welcome; } } match welcome { status 200; header Content-Type = text/html; body ~ "Welcome to nginx!"; } } Match Example
A complete nginx instance [root@lb01 conf]# cat nginx.conf worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; #blog lb by oldboy at 201303 upstream blog_real_servers { server 10.0.0.9:80 weight=1 max_fails=1 fail_timeout=10s; server 10.0.0.10:80 weight=1 max_fails=2 fail_timeout=20s; } server { listen 80; server_name blog.etiantian.org; location / { proxy_pass http://blog_real_servers; include proxy.conf; } } } [root@lb01 conf]# cat proxy.conf proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; Extensions Only GET, HEAD, and POST methods are allowed to be used for requests ## Only allow these request methods ## if ($request_method !~ ^(GET|HEAD|POST)$ ) { return 444; } Actual Combat Separate static and dynamic data based on URI and location. Final implementation:
[root@lb01 conf]# cat nginx.conf worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; #blog lb by oldboy at 201303 upstream static_pools { server 10.0.0.9:80; } upstream dynamic_pools { server 10.0.0.10:80; } upstream upload_pools { server 10.0.0.9:80; } server { listen 80; server_name blog.biglittleant.cn; location / { proxy_pass http://static_pools; include proxy.conf; } location /static/ { proxy_pass http://static_pools; include proxy.conf; } location ~* \.(gif|jpg|jpeg)$ { proxy_pass http://static_pools; include proxy.conf; } location /dynamic/ { proxy_pass http://dynamic_pools; include proxy.conf; } location /upload/ { proxy_pass http://upload_pools; include proxy.conf; } } } Implement different addresses for Apple and Android phones server { listen 80; server_name blog.etiantian.org; location / { if ($http_user_agent ~* "android") { proxy_pass http://android_pools; } if ($http_user_agent ~* "iphone") { proxy_pass http://iphone_pools; } proxy_pass http://pc_pools; include extra/proxy.conf; } access_log off; } Reference Documentation nginx-proxy_pass official website This is the end of this article about using nginx for load balancing module interpretation. For more relevant nginx load balancing 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:
|
<<: JavaScript tips to help you improve your coding skills
>>: MySQL 8.0 Window Function Introduction and Summary
PHP related paths in Ubuntu environment PHP path ...
Table of contents npm Install the loader Import P...
Table of contents 1. Basic use of css(): 1.1 Get ...
Use Javascript to implement a drop-down menu for ...
BEM from QQtabBar First of all, what does BEM mea...
Table of contents 1. What is Bubble Sort 2. Give ...
Preface This article uses pdo's preprocessing...
The 2008.5.12 Wenchuan earthquake in Sichuan took...
Slideshows are often seen on web pages. They have...
1. Enter start in the menu bar and click startup ...
Preface The general methods are not listed here, ...
Project scenario: Dark Horse Vue project manageme...
Windows Server 2019 is the latest server operatin...
The growth path from a Linux novice to a Linux ma...
Table of contents 1: Single machine password-free...