Proxy forwarding rulesWhen 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 / 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/ 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 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: 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:
|
<<: CSS3 realizes bouncing ball animation
>>: html opens a new window with a hyperlink and can control window properties
Previous: Markup Language - Phrase Elements Origin...
1. Add the isolation marker: ip netns add fd 2. P...
This article records the detailed tutorial of MyS...
Recently, when I was learning Django, I needed to...
Table of contents Set a not null constraint when ...
Table of contents ESLint plugin installation in H...
1. Download MySQL 1.1 Download address https://do...
Mysql sets boolean type 1. Tinyint type We create...
Apache SkyWalking Apache SkyWalking is an applica...
The backend uses the thinkphp3.2.3 framework. If ...
Preface Normal business needs: upload pictures, E...
Preface In database operations, in order to effec...
First, let's explain the network setting mode...
When href is needed to pass parameters, and the p...
Table of contents 1. Background knowledge 1. Intr...