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: 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:
|
<<: Common date comparison and calculation functions in MySQL
>>: Docker practice: Python application containerization
This article uses examples to describe MySQL dupl...
Scary, isn't it! Translation in the picture: ...
Preface This article mainly introduces the use an...
Starting from Elasticsearch 6.8, free users are a...
Zabbix Server Environment Platform Version: ZABBI...
Table of contents 1. BOM 2. Composition of BOM 2....
Sometimes it is necessary to perform simple verif...
Linux server hosts file configuration The hosts f...
This article shares the specific code for writing...
Table of contents 1. Implement the $(".box1&...
CSS import method - inline Through the style tag ...
Table of contents The relationship between the co...
Table of contents 1. Install Node Exporter 2. Ins...
I have seen a lot of MySQL-related syntax recentl...
A composite index (also called a joint index) is ...