Detailed explanation of the difference between url ending with / and without / in nginx proxy_pass configuration

Detailed explanation of the difference between url ending with / and without / in nginx proxy_pass configuration

When nginx configures proxy_pass, the difference between the URL with "/" at the end and without "/" at the end is as follows:

Note: When location is a regular expression matching pattern, the URL in proxy_pass is not allowed to have a "/" at the end, so the regular expression matching pattern is not within the scope of discussion.

When the URL in the proxy_pass configuration ends with a /, when nginx forwards, it will remove the location matching expression from the original URI and append it to the URL in proxy_pass.

Test address: http://192.168.171.129/test/tes.jsp

Scenario 1:

location ^~ /test/ {
 proxy_pass http://192.168.171.129:8080/server/;
}

The actual access address after proxy: http://192.168.171.129:8080/server/tes.jsp

Scenario 2:

location ^~ /test {
 proxy_pass http://192.168.171.129:8080/server/;
}

The actual access address after proxy: http://192.168.171.129:8080/server//tes.jsp

Scenario 3:

location ^~ /test/ {
 proxy_pass http://192.168.171.129:8080/;
}

The actual access address after proxy: http://192.168.171.129:8080/tes.jsp

Scenario 4:

location ^~ /test {
 proxy_pass http://192.168.171.129:8080/;
}

The actual access address after proxy: http://192.168.171.129:8080//tes.jsp

When there is no / at the end of the URL in the proxy_pass configuration, if the URL does not contain path, the original URI is directly concatenated after the URL in proxy_pass; if the URL contains path, the original URI is concatenated after removing the location matching expression and the URL in proxy_pass.

Test address: http://192.168.171.129/test/tes.jsp

Scenario 1:

 location ^~ /test/{
 proxy_pass http://192.168.171.129:8080/server;
 }

The actual access address after proxy: http://192.168.171.129:8080/servertes.jsp

Scenario 2:

location ^~ /test {
 proxy_pass http://192.168.171.129:8080/server;
}

The actual access address after proxy: http://192.168.171.129:8080/server/tes.jsp

Scenario 3:

location ^~ /test/ {
 proxy_pass http://192.168.171.129:8080;
}

The actual access address after proxy: http://192.168.171.129:8080/test/tes.jsp

Scenario 4:

location ^~ /test {
 proxy_pass http://192.168.171.129:8080;
}

The actual access address after proxy: http://192.168.171.129:8080/test/tes.jsp

This concludes this article on the differences between nginx proxy_pass with and without the end of the URL. For more information about the end of the nginx proxy_pass URL, please search 123WORDPRESS.COM's previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of various usages of proxy_pass in nginx
  • Summary of Nginx location and proxy_pass path configuration issues
  • Proxy_pass method in multiple if in nginx location
  • Implementation of proxy_pass in nginx reverse proxy
  • Differences between proxy_pass in two modules in nginx

<<:  Detailed explanation of Object.create instance usage in js

>>:  In-depth understanding of HTML form input monitoring

Recommend

Some useful meta setting methods (must read)

<meta name="viewport" content="...

How to use type enhancement without typingscript

Preface Due to the weak typing of JS, loose writi...

Detailed explanation of using Baidu style in eslint in React project

1. Install Baidu Eslint Rule plugin npm i -D esli...

Native JS realizes uniform motion of various sports

This article shares with you a uniform motion imp...

A brief analysis of Linux network programming functions

Table of contents 1. Create a socket 2. Bind sock...

Solve the problem that ElementUI custom CSS style does not take effect

For example, there is an input box <el-input r...

Examples of implementing progress bars and order progress bars using CSS

The preparation for the final exams in the past h...

js to implement verification code interference (dynamic)

This article example shares the specific code of ...

Comprehensive summary of mysql functions

Table of contents 1. Commonly used string functio...

A quick solution to the first login failure in mysql5.7.20

First, we will introduce how (1) MySQL 5.7 has a ...

Detailed explanation of how to use grep to obtain MySQL error log information

To facilitate the maintenance of MySQL, a script ...

A brief discussion on the role of HTML empty links

Empty link: That is, there is no link with a targ...

JavaScript to achieve magnifying glass effect

This article shares the specific code for JavaScr...

A detailed introduction to the use of block comments in HTML

Common comments in HTML: <!--XXXXXXXX-->, wh...