1、路径无法访问(access deny)
sol: 查看/var/log/nginx/error.log查看错误原因,没有文件夹访问权限,换地方存放vue build生成的文件
2、访问后网页没有内容
sol: index.js router中增加
{
path: '/',
redirect: 'login'
},
这块属于对Vue没有详细了解,增加重定向跳转
3、刷新后提示404
sol: 在Nginx的conf文件中增加配置 location/
try_files $uri $uri/ /index.html;
4、后端SVN打包提示没有启动类
https://www.cnblogs.com/joeblackzqq/p/10788684.html
pom.xml中增加
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.example.demo.Demo</mainClass>
</configuration>
</plugin>
如何用idea打包也是从这篇文章学的
5、Vue springboot Nginx的跨域访问问题
单写文章列出来了
https://blog.csdn.net/weixin_44117394/article/details/108236883