Example of how to configure cross-domain failure repair in nginx

Example of how to configure cross-domain failure repair in nginx

Nginx cross-domain configuration does not take effect as follows

server {
  listen 80;
  server_name localhost;
  
  # Interface forwarding location /api/ {
   # Allow cross-domain request addresses * as a wildcard add_header 'Access-Control-Allow-Origin' '*';
   # Set the request method to cross domain add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE';
   # Set whether to allow cookie transmission add_header 'Access-Control-Allow-Credentials' 'true';
   # Setting the request header. Why don't you set a wildcard character here? * Because add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,X-Data-Type,X-Requested-With,X-Data-Type,X-Auth-Token' is not supported.
   # Set reverse proxy proxy_pass 127.0.0.1:8081/;
  }
 }

The nginx cross-domain configuration on the Internet is mainly the above version. However, many people just copy it and don’t really practice it. So I wrote this article to remind those who need it not to copy it blindly and learn to analyze it.

Nginx changes the following configuration to take effect

server {
  listen 80;
  server_name localhost;
  
  # Interface forwarding location /api/ {
   # Allow cross-domain request addresses * as a wildcard add_header 'Access-Control-Allow-Origin' '*';
   # Set the request method to cross domain add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE';
   # Set whether to allow cookie transmission add_header 'Access-Control-Allow-Credentials' 'true';
   # Setting the request header. Why don't you set a wildcard character here? * Because add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,X-Data-Type,X-Requested-With,X-Data-Type,X-Auth-Token' is not supported.
   
   # Set options request processing if ( $request_method = 'OPTIONS' ) { 
    return 200;
   }
   # Set reverse proxy proxy_pass 127.0.0.1:8081/;
  }
 }

The main difference between the two codes is the following line of code

if ( $request_method = 'OPTIONS' ) { 
  return 200;
}

Because the browser will send an options pre-check request for the post request, which mainly sends the request header to the server. If the server allows it, it will send the real post request. Therefore, f12 shows that post often sends two requests. Because the backend Java code does not process the options request, the options interface request reports 403 forbidden. Here, nginx directly returns 200 to the options request, without reaching the interface layer, and directly allows the post response header, which can make the above invalid configuration effective.

A little knowledge point

proxy_pass 127.0.0.1:8081/;

Regarding the issue of whether to add or not in the reverse proxy;

Visit http://localhost/api/user/login;

  • If you add /, the actual access is 127.0.0.1:8081/user/login;
  • Without /, the actual access is 127.0.0.1:8081/api/user/login;

Adding a slash means that all /api requests will be forwarded to the root directory, that is, /api will be replaced by /. At this time, the interface path changes, with one less layer of /api. What about without the slash? This means that the /api path will not be lost when forwarding to the domain name 127.0.0.1:8081.

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:
  • Explanation of the configuration method for processing AJAX cross-domain requests in Nginx server
  • Detailed configuration of Nginx to use font files across domains
  • How to configure Nginx to use font files across domains
  • Nginx server configuration solves the cross-domain problem of ajax
  • The nginx server solves the cross-domain problem of API through configuration
  • Detailed explanation of Nginx reverse proxy cross-domain basic configuration and common misunderstandings
  • Nginx configuration cross-domain request Access-Control-Allow-Origin * detailed explanation
  • Nginx cross-domain access scenario configuration and anti-hotlinking details
  • How to implement cross-domain API proxy forwarding through Nginx proxy forwarding configuration

<<:  Detailed explanation of JavaScript stack and copy

>>:  Does the % in the newly created MySQL user include localhost?

Recommend

Detailed explanation of the process of building an MQTT server using Docker

1. Pull the image docker pull registry.cn-hangzho...

Vue achieves seamless carousel effect

This article shares the specific code of Vue to a...

MySQL advanced learning index advantages and disadvantages and rules of use

1. Advantages and Disadvantages of Indexes Advant...

In-depth explanation of MySQL common index and unique index

Scenario 1. Maintain a citizen system with a fiel...

Docker sets up port mapping, but cannot access the solution

#docker ps check, all ports are mapped CONTAINER ...

Detailed View of Hidden Columns in MySQL

Table of contents 1. Primary key exists 2. No pri...

Five solutions to cross-browser problems (summary)

Brief review: Browser compatibility issues are of...

Practice of dynamically creating dialog according to file name in vue+el-element

Table of contents background accomplish 1. Encaps...

Steps for Docker to build a private warehouse Harbor

Harbor Harbor is an open source solution for buil...

Summary of MySQL basic common commands

Table of contents MySQL basic common commands 1. ...

The latest virtual machine VMware 14 installation tutorial

First, I will give you the VMware 14 activation c...

Common naming rules for CSS classes and ids

Public name of the page: #wrapper - - The outer e...

Detailed explanation of Linux text processing command sort

sort Sort the contents of a text file Usage: sort...

Implementation of MySQL multi-version concurrency control MVCC

Transaction isolation level settings set global t...