Nginx reverse proxy configuration to remove prefix case tutorial

Nginx reverse proxy configuration to remove prefix case tutorial

When using nginx as a reverse proxy, you can simply forward the request to the next service intact. Setting the proxy_pass request will only replace the domain name. If you want to access different services based on different URL suffixes, you need to use the following method:

Method 1: Add "/"

server {
    listen 8000;
    server_name abc.com;
    access_log "pipe:rollback /data/log/nginx/access.log interval=1d baknum=7 maxsize=1G" main;

    location ^~/user/ {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-NginX-Proxy true;

        proxy_pass http://user/;
    }

    location ^~/order/ {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-NginX-Proxy true;

        proxy_pass http://order/;
    }
}

^~/user/ means matching requests with the prefix user. If there is a / at the end of proxy_pass, the path after /user/* will be directly concatenated to the end, that is, user will be removed.

Method 2: rewrite

upstream user
  server localhost:8089 weight=5;
}
upstream order
  server localhost:8090 weight=5;
}

server {
    listen 80;
    server_name abc.com;
    access_log "pipe:rollback /data/log/nginx/access.log interval=1d baknum=7 maxsize=1G" main;

    location ^~/user/ {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-NginX-Proxy true;

        rewrite ^/user/(.*)$ /$1 break;
        proxy_pass http://user;
    }

    location ^~/order/ {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-NginX-Proxy true;

        rewrite ^/order/(.*)$ /$1 break;
        proxy_pass http://order;
    }
}

There is no / at the end of proxy_pass, and rewrite rewrites the URL.

This is the end of this article about the nginx reverse proxy configuration to remove the prefix case tutorial. For more relevant nginx reverse proxy configuration to remove the prefix content, 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:
  • Explanation of nginx load balancing and reverse proxy
  • Getting Started with Nginx Reverse Proxy
  • Full process record of Nginx reverse proxy configuration
  • How to implement Nginx reverse proxy for multiple servers
  • About nginx to implement jira reverse proxy

<<:  61 Things Every Web Developer Should Know

>>:  Detailed explanation of Vue life cycle functions

Recommend

WeChat applet implements simple calculator function

WeChat applet: Simple calculator, for your refere...

W3C Tutorial (3): W3C HTML Activities

HTML is a hybrid language used for publishing on ...

The basic use of html includes links, style sheets, span and div, etc.

1. Links Hypertext links are very important in HTM...

12 Javascript table controls (DataGrid) are sorted out

When the DataSource property of a DataGrid control...

Teach you how to build Tencent Cloud Server (graphic tutorial)

This article was originally written by blogger We...

Example of how to change the line spacing of HTML table

When using HTML tables, we sometimes need to chan...

Summary of Common Commands for Getting Started with MySQL Database Basics

This article uses examples to describe the common...

Two ways to prohibit clearing the input text input cache in html

Most browsers will cache input values ​​by defaul...

Implementation of a simple login page for WeChat applet (with source code)

Table of contents 1. Picture above 2. User does n...

Simple usage examples of MySQL custom functions

This article uses examples to illustrate the usag...

Mysql timeline data to obtain the first three data of the same day

Create table data CREATE TABLE `praise_info` ( `i...

Detailed explanation of JavaScript Promise and Async/Await

Table of contents Overview Four examples Example ...

HTML Tutorial: Ordered Lists

<br />Original text: http://andymao.com/andy...