Preface Recently, I have been helping clients configure servers and frequently modifying Nginx configuration files. I have frequently used regular matching rules. Here are some commonly used regular parameters and rules for your reference. The syntax rules of Location in Nginx configuration
Matching order When multiple locations are configured, the matching order is:
Common rules Exact Match location = / { proxy_pass http://127.0.0.1:9090/ } Forward all requests directly to port 9090 of the server. Serving static files #Directory matching location ^~ /static/ { root /webroot/static/; } #Suffix matching location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ { root /webroot/res/; } Forward dynamic requests to the backend application server #Forward requests starting with /account/ to the Account server location /account/ { proxy_pass http://127.0.0.1:8080/ } #Forward requests starting with /order/ to the Order server location /order/ { proxy_pass http://127.0.0.1:9090/ } rewrite directive
Summarize This is the end of this article about Nginx regular expression related parameters and rules. For more relevant Nginx regular parameters and rules, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of various methods for JavaScript to determine whether it is an array
>>: Detailed explanation of MySQL 8.0.18 commands
How to use iframe: Copy code The code is as follo...
1. Basic lines 2. Special effects (the effects ar...
1. Set up HOST on the host Macbook The previous d...
Optimizing and refining information is always the ...
Today I got familiar with the mouse zooming effect...
Docker Quickly Install Zookeeper I haven't us...
There are two common ways to make div background ...
Today when I was writing a flash advertising code,...
In the previous article, we introduced: MySQL8.0....
1. Overview I searched a lot online and found tha...
First we need to know the self-calling of the fun...
1. First, you need to use the target selector of ...
Nginx supports three ways to configure virtual ho...
Preface: The group by function retrieves the firs...
1. The role of brackets 1.1 Square brackets [ ] W...