Nginx handles http request implementation process analysis

Nginx handles http request implementation process analysis

Nginx first decides which server{} block in the configuration file to use for processing. Assume the following server{} configuration

server {
  listen 80;
  server_name aaa;
  ...
}

server {
  listen 80;
  server_name bbb;
  ...
}

Nginx will determine which server to use based on the value in the Host field in the incoming http request header{}.

If there is no Host field in the request header, or the value in the Host field does not match the {server_name} in the server{} in the Nginx configuration file, the first server{} is used to process the request.

If the value in the Host field in the request header matches the {server_name} in a server{} in the Nginx configuration file, this server{} is used to process the request.

You can use the curl tool to easily do experiments. curl can set the request header of the http request, so you can set the Host field arbitrarily, using [-H] to set it. The 10.210.65.73 below is the IP address of the machine where nginx is installed.

So using the following command, after sending the http request, nginx will use server{server_name aaa} to process the request.

curl.exe -H "Host: aaa" 10.210.65.73

Very important conclusion: server_name corresponds to the value of the Host field in the http request header. With the above theoretical support, it is easy to set up reverse proxy and load balancing:

When the Host field in the incoming http request header is aaa, storage.test will handle it.

When the Host field in the incoming http request header is bbb, tracker.test will handle it.

  #Load balancing configuration, the machine with IP 129 has a high configuration, so the number 27 is given to it to let it handle more upstream storage.test {
   server 10.210.65.129:80 weight=27;
   server 10.210.65.130:80 weight=1;
  }

  #Load balancing configuration upstream tracker.test {
   server 10.210.65.52:80 weight=7;
   server 10.210.65.53:80 weight=2;
  }

  #File storage server {
    listen 80;
    server_name aaa;
    location / {
      #The content after http::// is self-defined, corresponding to the upstream name proxy_pass http://storage.test above;
    }
  }

  #File server tracker
  server {
    listen 80;
    server_name bbb;

    location / {
      #The content after http::// is self-defined, corresponding to the upstream name proxy_pass http://tracker.test;
    }

  }

Whose port is the listen in server{} listening on?

What is being listened to is: the port of the process (mostly browsers) that sends the http request (if it is an http request, the port is 80), not the port of the nginx server's own process.

Nginx decides which server to use to handle the http request based on the value in the Host field of the http request header and the port of the process that sends the http request (mostly the browser).

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed analysis of each stage of nginx's http request processing
  • Nginx implements https website configuration code example
  • Detailed tutorial on configuring nginx for https encrypted access
  • Implementation of Nginx domain name forwarding https access
  • Alibaba Cloud Nginx configures https to implement domain name access project (graphic tutorial)
  • Nginx configures the same domain name to support both http and https access
  • Detailed configuration of Nginx supporting both Http and Https
  • Use nginx + secondary domain name + https support

<<:  An example of elegant writing of judgment in JavaScript

>>:  Mysql Sql statement exercises (50 questions)

Recommend

Linux common basic commands and usage

This article uses examples to illustrate common b...

Database query which object contains which field method statement

The database queries which object contains which ...

An example of the calculation function calc in CSS in website layout

calc is a function in CSS that is used to calcula...

mysql8.0 windows x64 zip package installation and configuration tutorial

MySQL 8 Windows version zip installation steps (d...

Implementation of Vue package size optimization (from 1.72M to 94K)

1. Background I recently made a website, uidea, w...

Web designers should optimize web pages from three aspects

<br />With the increase of bandwidth, there ...

Use of Linux cal command

1. Command Introduction The cal (calendar) comman...

Detailed explanation of the construction and use of docker private warehouse

1. Download the repository image docker pull regi...

Creative opening effect achieved by combining CSS 3.0 with video

Let me share with you a creative opening realized...

Detailed explanation of how to use Docker-Compose commands

You can manage and deploy Docker containers in a ...

How to insert video into HTML and make it compatible with all browsers

There are two most commonly used methods to insert...

Specific usage instructions for mysql-joins

Table of contents Join syntax: 1. InnerJOIN: (Inn...

How to build a tomcat image based on Dockerfile

Dockerfile is a file used to build a docker image...

Implementing carousel with native JavaScript

This article shares the specific code for impleme...