Detailed explanation of Nginx proxy_redirect usage

Detailed explanation of Nginx proxy_redirect usage

Today, I encountered a little problem when I was doing nginx reverse proxy for apache. It turned out that the port used by the backend apache was 8080. After passing through the reverse proxy, I used wireshark to capture the packet and found that the value of the location header field was http://192.168.1.154:8080/wuman/. If this is returned to the client, it is definitely not allowed. It looks awkward and also exposes the specific information of apache.

Therefore, nginx's proxy_redirect is used here to specify the modification of the location header field and refresh header field value in the response header returned by the proxy server.

The following is a small excerpt from nginx's configuration document

server {
 listen 80;
 server_name www.boke.com;
 location / {
  proxy_pass http://192.168.1.154:8080;
  proxy_redirect off;
 }
 }

At this point we use curl to view the results

[root@localhost nginx]# curl -I http://www.boke.com/wuman
HTTP/1.1 301 Moved Permanently
Server: nginx
Date: Thu, 24 Dec 2015 12:02:00 GMT
Content-Type: text/html; charset=iso-8859-1
Connection: keep-alive
Location: http://192.168.1.154:8080/wuman/

Here, location is the response header information with the actual address and port of the backend server. This is not allowed in the actual line, so here we plan to modify the location field in the response header of the proxy server through proxy_redirect and return it to the client.

server {
 listen 80;
 server_name www.boke.com;
 location / {
  proxy_pass http://192.168.1.154:8080;
  proxy_redirect http://192.168.1.154:8080/wuman/ http://www.boke.com/wuman/;
 }

server {
 listen 80;
 server_name www.boke.com;
 location / {
  proxy_pass http://192.168.1.154:8080;
  proxy_redirect ~^http://192.168.1.154:8080(.*) http://www.boke.com$1;
 }

Then curl checks the returned results

[root@localhost nginx]# curl -I http://www.boke.com/wuman
HTTP/1.1 301 Moved Permanently
Server: nginx
Date: Thu, 24 Dec 2015 12:08:34 GMT
Content-Type: text/html; charset=iso-8859-1
Connection: keep-alive
Location: http://www.boke.com/wuman/

At this point, checking location has become the result we want. At this time, we redirected to our new page through replacement 301

Source:

proxy_redirect

Syntax: proxy_redirect [ default|off|redirect replacement ]

Default value: proxy_redirect default

Use fields: http, server, location

If you need to modify the "Location" and "Refresh" fields in the response header sent from the proxied server, you can use this command to set them.

Assume that the Location field returned by the proxy server is: http://localhost:8000/two/some/uri/

This instruction:

proxy_redirect http://localhost:8000/two/ http://frontend/one/;

Rewrite the Location field to http://frontend/one/some/uri/.

You don't have to write a server name in the Replace field:

proxy_redirect http://localhost:8000/two/ /;

This will use the server's base name and port, even if it's from a port other than 80.

If the "default" parameter is used, it will be determined based on the settings of the location and proxy_pass parameters.

For example, the following two configurations are equivalent:

location / one / {
 proxy_pass http: //upstream:port/two/; 
 proxy_redirect default;
}
location / one / {
 proxy_pass http: //upstream:port/two/; 
 proxy_redirect http: //upstream:port/two/ /one/;
}

There are several variables that can be used in directives:

proxy_redirect http://localhost:8000/ http://$host:$server_port/;

This instruction can sometimes be repeated:

proxy_redirect default;
proxy_redirect http://localhost:8000//; proxy_redirect ; /;

The parameter off will disable all proxy_redirect directives in this field:

proxy_redirect off;
proxy_redirect default;
proxy_redirect http://localhost:8000/ /; proxy_redirect ; /;

Use this directive to add the hostname to relative redirects issued by the proxied server:

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:
  • Summary of three methods for implementing grayscale release in Nginx
  • Detailed explanation of Asp.Net Core publishing and deployment (MacOS + Linux + Nginx)
  • A brief analysis of nginScript, the JavaScript capability just released by nginx
  • Detailed explanation of Nginx's control over access volume
  • Setting up a proxy server using nginx
  • Docker container deployment attempt - multi-container communication (node+mongoDB+nginx)
  • Example of how to install nginx to a specified directory
  • How to configure Nginx to support ipv6 under Linux system
  • Detailed explanation of the front-end and back-end deployment tutorial based on Vue and Nginx
  • How to use nginx to simulate canary release

<<:  Vue project realizes paging effect

>>:  jQuery treeview tree structure application

Recommend

Simple operation of installing vi command in docker container

When using a docker container, sometimes vim is n...

Detailed explanation of Vue lazyload picture lazy loading example

Documentation: https://github.com/hilongjw/vue-la...

MySQL 8.0.15 installation and configuration tutorial under Win10

What I have been learning recently involves knowl...

MySQL select results to perform update example tutorial

1. Single table query -> update UPDATE table_n...

Common problems and solutions during MySQL MGR construction

Table of contents 01 Common Faults 1 02 Common Fa...

Tutorial on installing and uninstalling python3 under Centos7

1. Install Python 3 1. Install dependency package...

Sample code for implementing the Olympic rings with pure HTML+CSS

Rendering Code - Take the blue and yellow rings a...

How to write a picture as a background and a link (background picture plus link)

The picture is used as the background and the lin...

Use of MySQL query rewrite plugin

Query Rewrite Plugin As of MySQL 5.7.6, MySQL Ser...

How to install and modify the initial password of mysql5.7.18 under Centos7.3

This article shares with you the installation of ...

Detailed summary of MySQL and connection-related timeouts

MySQL and connection related timeouts Preface: To...