- build 打包生成 dist 上传至服务器
- 版本:nginx1.24,dist放置根目录下html下
location / {
#项目打包生成的静态文件所在路径 配置要打开的资源的根目录的地址,是以 nginx 下的 html 文件夹中dist为根目录来查找的
root html/dist;
#默认主页
index index.html index.htm;
#Nginx部署Vue项目刷新404问题
#try_files $uri $uri/ /index.html;
}
闭坑注意: root 参数:html/dist 不要在html前面加“/” ,此处配置不对 访问会显示404错误
- vue3本地开发中解决跨域 会配置代理,但是build后的包是包含代理配置文件的,所以此处要通过nginx的反向代理 重新配置
#配置反向代理,解决跨域问题
#当路径匹配到/api时,将用http://localhost:3000来代替
location /api {
proxy_set_header Host $proxy_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Connection "keep-alive";
#要代理的后端接口地址
proxy_pass http://ip:8088/xx/xx/xx;
}
闭坑注意:
本地开发环境中配置的 代理地址:http://ip:8088/xx/xx/xx/ 原值赋值后会导致报错
应配置为:http://ip:8088/xx/xx/xx,自后没有“/”扛
7.