1 ,xshell 进入根目录 /etc
2 进入etc目录,有个nginx
3 进入nginx 目录 安装nginx 用 yum install nginx
4 安装完,在nginx目录下 有一个nginx.conf 文件,在这个文件进行配置
5 vim nginx.conf 进行编辑 添加两项
location/{
root /root/ /配置打包之后的文件 dist;
index index.html
try_files $uri $uri/ /index.html
}
6 配置路径
location /api {
proxy_pass :路径;
}
保存退出
重启 service nginx start