欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

nginx配置多个vue项目

程序员文章站 2022-04-06 22:28:56
需求 nginx 下配置多个 vue 项目 举例: blog: https://www.yoursite.com/blog test: https://...

需求

nginx 下配置多个 vue 项目

举例:

blog: https://www.yoursite.com/blog
test: https://www.yoursite.com/test

vue项目中配置

vue-router 设置 base 路径

base: '/blog/'

config/index.js 修改 assetspublicpath

assetspublicpath: '/blog/'

nginx配置

location /blog {
try_files $uri $uri/ /blog/index.html;
}