A brief analysis of the matching priority of Nginx configuration location

A brief analysis of the matching priority of Nginx configuration location

Preface

The location in the server block in the Nginx configuration is used to match the request URI so that different URIs can be processed differently.

location type and conditions for successful matching

  • location = expression {} Exact match, only when URI and expression are exactly the same, the match is successful;
  • location expression {} Normal matching, as long as the characters in the front part of the URI are the same as expression, the match is successful;
  • location ^~ expression {} Normal matching, as long as the first part of the URI is the same as expression, the match is successful;
  • location ~ regex {} regular matching (case sensitive);
  • location ~* regex {} regular expression matching (case insensitive);

The summary can be divided into three categories: exact matching, ordinary matching and regular matching.

Matching logic and priority

For a request entering Nginx, its URI may meet the matching conditions of multiple locations, but the request will ultimately be processed by only one location logic (redirection is not counted), so there must be a priority difference when matching. Nginx's matching logic is as follows:

1. Perform an exact match

If the request URI matches location = (meets the exact match condition), the content of the location is executed and no other matches are performed. Otherwise, see the next item.

2. Perform normal matching

Next, Nginx will compare the URI with all the normal matching locations (regardless of ^~ type or unsigned type), and then find the location with the highest matching degree. If the location is of ^~ type, it will stop matching and execute the content of the location. If the location with the highest matching degree is of unsigned type, it will keep this unsigned location and continue with the following regular matching. If the URI does not meet the conditions of any normal matching location, it will go directly to the next step.

3. Perform regular expression matching

The matching of regular expressions is related to the order of location. Nginx will match from top to bottom. If a location is matched, the logic of that location will be executed, and all subsequent regular expression locations will be ignored, terminating the matching. If no regular expression is matched, the previously reserved unsigned location will be executed. If no location was reserved before, 404 will be returned directly.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Nginx configuration directive location matcher priority and security issues
  • In-depth explanation of nginx location priority

<<:  How to implement two-way binding function in vue.js with pure JS

>>:  Explanation of the usage of replace and replace into in MySQL

Recommend

CSS to implement sprites and font icons

Sprites: In the past, each image resource was an ...

Navicat connection MySQL error description analysis

Table of contents environment Virtual Machine Ver...

How to reset your Linux password if lost

1. The startup menu is to move the cursor to the ...

Install multiple versions of PHP for Nginx on Linux

When we install and configure the server LNPM env...

How to use nodejs to write a data table entity class generation tool for C#

Although Microsoft provides T4 templates, I find ...

How to install MySQL under Linux (yum and source code compilation)

Here are two ways to install MySQL under Linux: y...

Detailed explanation of VUE's data proxy and events

Table of contents Review of Object.defineProperty...

How to avoid duplication of data when inserting in MySql batch

Table of contents Preface 1. insert ignore into 2...

Detailed explanation of the installation and use of Vue-Router

Table of contents Install Basic configuration of ...

MySQL8.0.18 configuration of multiple masters and one slave

Table of contents 1. Realistic Background 2. Agre...

MySQL 8.0.22 winx64 installation and configuration method graphic tutorial

The database installation tutorial of MySQL-8.0.2...

How does MySQL implement ACID transactions?

Preface Recently, during an interview, I was aske...

Vue3+el-table realizes row and column conversion

Table of contents Row-Column Conversion Analyze t...

JavaScript realizes the queue structure process

Table of contents 1. Understanding Queues 2. Enca...