How to use Nginx to handle cross-domain Vue development environment

How to use Nginx to handle cross-domain Vue development environment

1. Demand

The local test domain name is the same as the online domain name to ensure correct cookie delivery and SSO testing.

Note: After SSO login, the relevant cookies are added to the fourth-level domain name, so the local test domain name and the online interface domain name must be the same.

2. Solution

Configure the Host file to point the online domain name to Localhost:

127.0.0.1 product.xxx.xxx.com

Configure Nginx for corresponding forwarding:

server {
  listen 80;
  listen [::]:80;
  server_name ${product.xxx.xxx.com};

  location /api {
    proxy_pass https://${ip.ip.ip.ip};
    proxy_set_header Host $host;
  }

  location / {
    proxy_pass http://localhost:8080;
    proxy_set_header Host $host;
  }  
}

Configure vue.config.js to avoid Invalid Host header error:

{
  devServer: {
    disableHostCheck: true
  }
}

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:
  • vue-cli3 configuration and cross-domain processing method
  • How to handle cross-domain proxyTable in webpack+vue-cil
  • Vue-cli axios request method and cross-domain processing issues
  • In the Vue project, use axios cross-domain processing
  • Introduction to several common cross-domain processing methods in Vue
  • Summary of Vue's cross-domain problem handling and solutions

<<:  Common date comparison and calculation functions in MySQL

>>:  Docker practice: Python application containerization

Recommend

Analysis of MySQL duplicate index and redundant index examples

This article uses examples to describe MySQL dupl...

Who is a User Experience Designer?

Scary, isn't it! Translation in the picture: ...

Docker installs Elasticsearch7.6 cluster and sets password

Starting from Elasticsearch 6.8, free users are a...

CentOS 8.0.1905 installs ZABBIX 4.4 version (verified)

Zabbix Server Environment Platform Version: ZABBI...

Detailed explanation of JavaScript BOM composition and common events

Table of contents 1. BOM 2. Composition of BOM 2....

JavaScript implements password box input verification

Sometimes it is necessary to perform simple verif...

Detailed explanation of hosts file configuration on Linux server

Linux server hosts file configuration The hosts f...

Writing a rock-paper-scissors game in JavaScript

This article shares the specific code for writing...

Detailed explanation of JavaScript prototype and examples

Table of contents The relationship between the co...

Detailed tutorial on installing Prometheus with Docker

Table of contents 1. Install Node Exporter 2. Ins...

In-depth study of MySQL composite index

A composite index (also called a joint index) is ...