比如說是10.3.2.52登錄,現(xiàn)在要改成10.3.70.52/xmglxt 的形式登錄
分三步進(jìn)行
1.?前端:
const baseUrl = '/xmglxt/api' 每一個接口前都加一個,api是用來實(shí)現(xiàn)跨域的
在config文件夾下的prod.env.js的module.exports里面加一行API_ROOT: '"http://10.3.70.52/xmglxt"'
module.exports = {
? NODE_ENV: '"production"',
? API_ROOT: '"http://10.3.70.52/xmglxt"'
}
前端部署打包后的dist改名成xmglxt放到nginix
2坎弯,后端
context-path加一個/xmglxt/
3,nginix配置
server {
listen? ? ? 80;
server_name? 10.3.70.52;
location ^~/xmglxt/{
root C:/nginx/html/;
index? index.html;
}
location ^~/xmglxt/api/ {
?proxy_pass? http://10.3.70.52:8888/xmglxt/;
? ? ? ? }
? location = /50x.html {
root? html;
? ? ? ? }
? ? }