Detailed explanation of various usages of proxy_pass in nginx

Detailed explanation of various usages of proxy_pass in nginx

Proxy forwarding rules

When configuring location proxy forwarding rules in nginx, different writing methods correspond to different forwarding rules.

If proxy_pass uses a URI, when the request is transmitted to the backend server, the matching part of the normalized request path and the path in the configuration will be replaced by the URI defined in the directive (corresponding to the first case below).

If proxy_pass is not used with a URI, the request URI sent to the backend server is generally the original URI initiated by the client (the second case below).

Access address: http://localhost/proxy/abc.html

Here are some common matching scenarios:

The first one:

location /proxy/ {
proxy_pass http://127.0.0.1:8080/;
}

Proxy to: http://127.0.0.1:8080/abc.html

Second type:

location /proxy/ {
proxy_pass http://127.0.0.1:8080;
}

Compared with the first proxy_pass, it lacks /
Proxy to: http://127.0.0.1:8080/proxy/abc.html

The third type:

location /proxy/ {
proxy_pass http://127.0.0.1:8080/api/;
}

Proxy to: http://127.0.0.1:8080/api/abc.html

The fourth type:

location /proxy/ {
proxy_pass http://127.0.0.1:8080/api;
}

Less than the third type/
Proxy to: http://127.0.0.1:8080/apiabc.html

location /proxy {
proxy_pass http://127.0.0.1:8080/api;
}

Proxy to: http://127.0.0.1:8080/api/abc.html

Fifth:

location /proxy {
proxy_pass http://127.0.0.1:8080/;
}

Proxy to: http://127.0.0.1:8080//abc.html
Note that there are two backslashes //

location /proxy {
proxy_pass http://127.0.0.1:8080;
}

Proxy to: http://127.0.0.1:8080/proxy/abc.html

Here is an explanation from the official documentation:

httpproxy

NGINX-httpproxy module official documentation Chinese documentation translated by Alibaba tengine - recommended reading

This is the end of this article about the various uses of proxy_pass in nginx. For more relevant content on the use of nginx proxy_pass, please search for previous articles on 123WORDPRESS.COM 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 Nginx location and proxy_pass path configuration issues
  • Detailed explanation of the difference between url ending with / and without / in nginx proxy_pass configuration
  • 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

<<:  CSS3 realizes bouncing ball animation

>>:  html opens a new window with a hyperlink and can control window properties

Recommend

Markup Language - Anchor

Previous: Markup Language - Phrase Elements Origin...

MySQL Installer Community 5.7.16 installation detailed tutorial

This article records the detailed tutorial of MyS...

Solution to 2059 error when connecting Navicat to MySQL

Recently, when I was learning Django, I needed to...

MySQL not null constraint case explanation

Table of contents Set a not null constraint when ...

vue front-end HbuliderEslint real-time verification automatic repair settings

Table of contents ESLint plugin installation in H...

Detailed process of building mysql5.7.29 on centos7 of linux

1. Download MySQL 1.1 Download address https://do...

Mysql sets boolean type operations

Mysql sets boolean type 1. Tinyint type We create...

Detailed explanation of Apache SkyWalking alarm configuration guide

Apache SkyWalking Apache SkyWalking is an applica...

How to configure pseudo-static and client-adaptive Nginx

The backend uses the thinkphp3.2.3 framework. If ...

Implementation of breakpoint resume in Node.js

Preface Normal business needs: upload pictures, E...

Analyzing the four transaction isolation levels in MySQL through examples

Preface In database operations, in order to effec...

Regarding the Chinese garbled characters in a href parameter transfer

When href is needed to pass parameters, and the p...

A brief analysis of the function calling process under the ARM architecture

Table of contents 1. Background knowledge 1. Intr...