Nginx forwarding based on URL parameters

Nginx forwarding based on URL parameters

Use scenarios:

The jump path needs to be dynamically configured according to the intercepted URL, which is common in accessing files and pictures with non-fixed IP addresses in the intranet.

Request address: http://11.19.1.212:82/bimg4/32.52.62.42:222/DownLoadFile?filename=LOC:12/data/20180208/15/2e0ae54dfd752210083404deed15269c_222403

The actual intranet address to be accessed: http://32.52.62.42:222/DownLoadFile?filename=LOC:12/data/20180208/15/2e0ae54dfd752210083404deed15269c_222403

nginx configuration file

server {
  listen 83;
  server_name localhost;
  index index.html index.htm;

  root D:/workspace-xxxx/xxx_Web;

  error_page 500 502 503 504 / 50x.html;
  location = /50x.html {
      root html;
    }
  location ^~ /xxx/ {
    proxy_pass http://192.168.60.36:8090/xxxx/;
    proxy_redirect default;
    proxy_set_header Host $host;
    proxy_set_header X - Real - IP $remote_addr;
    proxy_set_header X - Forwarded - Host $host;
    proxy_set_header X - Forwarded - Server $host;
    proxy_set_header X - Forwarded - For $proxy_add_x_forwarded_for;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "Upgrade";
  }
# Here is the path after bimg4 in the request address and assigned to the forwarding address location ^ ~ / bimg4 / {
    if ($request_uri~ / bimg4 / (. * )) {
      set $bucketid $1;
    }
    proxy_pass http: //$bucketid;
  }
}

This is the end of this article about how to forward URL parameters in Nginx. For more information about Nginx URL forwarding with parameters, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • 18 Nginx proxy cache configuration tips that operators must know (which ones do you know?)
  • Summary of some common configurations and techniques of Nginx
  • Sharing tips on limiting the number of connections in nginx
  • A brief introduction to some tips for optimizing Nginx servers
  • Nginx Rewrite rules and usage introduction and skills examples
  • Implementation of nginx proxy port 80 to port 443
  • Detailed explanation of several error handling when Nginx fails to start
  • Summary of common Nginx techniques and examples

<<:  MySQL master-slave replication delay causes and solutions

>>:  js canvas implements verification code and obtains verification code function

Recommend

How to use cutecom for serial communication in Ubuntu virtual machine

Using cutecom for serial communication in Ubuntu ...

5 tips for writing CSS to make your style more standardized

1. Arrange CSS in alphabetical order Not in alphab...

A brief discussion on MySQL large table optimization solution

background The amount of new data in the business...

Vue realizes click flip effect

Use vue to simply implement a click flip effect f...

Detailed explanation of MySQL's FreeList mechanism

1. Introduction After MySQL is started, BufferPoo...

Vue component encapsulates sample code for uploading pictures and videos

First download the dependencies: cnpm i -S vue-uu...

How to use Greek letters in HTML pages

Greek letters are a very commonly used series of ...

Detailed explanation of importing/exporting MySQL data in Docker container

Preface We all know that the import and export of...

Tips on MySQL query cache

Table of contents Preface Introduction to QueryCa...

Zabbix configuration DingTalk alarm function implementation code

need Configuring DingTalk alarms in Zabbix is ​​s...

Example of how to deploy MySQL 8.0 using Docker

1. Refer to the official website to install docke...

How to solve the problem that Seata cannot use MySQL 8 version

Possible reasons: The main reason why Seata does ...

Detailed usage of React.Children

Table of contents 1. React.Children.map 2. React....