Summary of nginx configuration location method

Summary of nginx configuration location method

location matching order

1. "=" prefix instruction matching, if the match is successful, stop other matching
2. Ordinary string instruction matching, the order is from long to short, if the location that matches successfully uses ^~, then stop other matching (regular matching)
3. Regular expression command matching, according to the order in the configuration file, stop other matching if successful
4. If there is a match in the third step, use the result, otherwise use the result of the second step

Note

1. The matching order is to match the normal string first, and then match the regular expression. In addition, the order of common string matching is from long to short according to the length of characters in the configuration. That is to say, the order of locations configured with common strings is irrelevant. In the end, nginx will match according to the length of the configuration. However, it should be noted that regular expressions are tested in the order in the configuration file. The search stops when the first match of the regular expression is found.

2. In general, after successfully matching the ordinary string location, the regular expression location will also be matched. There are two ways to change this behavior. One is to use the "=" prefix, which performs a strict match and stops other matches immediately after a successful match while processing the request. The other is to use the "^~" prefix. If this prefix is ​​used for a regular string, it tells nginx not to test the regular expression if the path matches.

Matching pattern and order

Location = /uri = at the beginning indicates an exact match, and only a complete match will take effect.

location ^~ /uri ^~ starts with a prefix match on the URL path and comes before the regular expression.

The location ~ pattern ~ at the beginning indicates a case-sensitive regular match.

location ~* pattern ~* starts with a case-insensitive regular expression.

location /uri without any modifiers also indicates prefix matching, but after regular expression matching.

location / Universal matching, any request that does not match other locations will be matched, which is equivalent to the default in switch.

Experimental Case

Test "^~" and "~", nginx configuration is as follows. Enter http://localhost/helloworld/test in the browser and it returns 601. If you comment #1 and open #2, and enter http://localhost/helloworld/test in the browser, 603 will be returned. Note: #1 and #2 cannot be opened at the same time. If they are opened at the same time, when starting nginx, it will report nginx: [emerg] duplicate location "/helloworld"..., because these two are ordinary strings.

location ^~ /helloworld { #1
 return 601;
}
  
#location /helloworld { #2
# return 602;
#}

location ~ /helloworld {
 return 603;
} 

Test the length of a common string (the matching of a common string has nothing to do with the order but with the length). Enter http://localhost/helloworld/test/a.html in the browser and it returns 601. Enter http://localhost/helloworld/a.html in the browser and it returns 602.

location /helloworld/test/ { #1
 return 601;
}
  
location /helloworld/ { #2
 return 602;
}

Test the order of regular expressions (regular matching is order-dependent). Enter http://localhost/helloworld/test/a.html in the browser, and return 602; swap the order of #2 and #3, enter http://localhost/helloworld/test/a.html in the browser, and return 603

location /helloworld/test/ { #1
 return 601;
}

location ~ /helloworld { #2
 return 602;
}
  
location ~ /helloworld/test { #3
 return 603;
}

So in actual use, I think there are at least three matching rule definitions, as follows:

#Directly match the website root. It is more frequent to access the website homepage through the domain name. Using this will speed up the processing, the official website said. 
#This is forwarded directly to the backend application server, or it can be a static homepage# The first required rule location = / { 
 proxy_pass http://tomcat:8080/index 
} 
 
# The second mandatory rule is to process static file requests, which is the strength of nginx as an http server. # There are two configuration modes, directory matching or suffix matching, choose one or use both location ^~ /static/ { 
 root /webroot/static/; 
} 
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ { 
 root /webroot/res/; 
} 
 
#The third rule is a general rule, which is used to forward dynamic requests to the backend application server. #Non-static file requests are dynamic requests by default, and you can grasp it according to your actual situation. #After all, some popular frameworks now rarely have .php and .jsp suffixes. location / { 
 proxy_pass http://tomcat:8080/ 
}

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:
  • Use nginx.vim tool for syntax highlighting and formatting configuration nginx.conf file
  • How to configure two-way certificate verification on nginx proxy server
  • How to configure Nginx virtual host in CentOS 7.3
  • Detailed explanation of the communication mechanism between PHP-FPM and Nginx
  • Detailed explanation of using Nginx reverse proxy to solve cross-domain problems
  • An example of how to use nginx to configure multiple laravel projects with one domain name
  • Shell script nginx automation script
  • How to create an Nginx server with Docker
  • A brief discussion on why daemon off is used when running nginx in docker
  • Example method of deploying react project on nginx

<<:  React+Antd implements an example of adding, deleting and modifying tables

>>:  Install MySQL 5.7.18 using rpm package under CentOS 7

Recommend

Use of Linux telnet command

1. Introduction The telnet command is used to log...

Detailed explanation of common for loop in JavaScript statements

There are many loop statements in JavaScript, inc...

Let's talk about the v-on parameter problem in Vue

Use of v-on:clock in Vue I'm currently learni...

Basic commands for MySQL database operations

1. Create a database: create data data _name; Two...

How to use physics engine joints in CocosCreator

Table of contents mousejoint mouse joint distance...

How to find the my.ini configuration file in MySQL 5.6 under Windows

Make a note so you can come back and check it lat...

Detailed configuration of mysql8.x docker remote access

Table of contents Environmental conditions Errors...

Docker connects to the host Mysql operation

Today, the company project needs to configure doc...

A brief discussion on the role of Vue3 defineComponent

Table of contents defineComponent overload functi...

Detailed explanation of the execution order of JavaScript Alert function

Table of contents question analyze solve Replace ...

Implementation of Mysql User Rights Management

1. Introduction to MySQL permissions There are 4 ...

htm beginner notes (must read for beginners)

1. What is HTML HTML (HyperText Markup Language):...

Linux kernel device driver Linux kernel basic notes summary

1. Linux kernel driver module mechanism Static lo...

Learn MySQL in a simple way

Preface The database has always been my weak poin...