前端部署流程:
- 安装nginx
参考链接: https://www.cnblogs.com/fengkun125/p/14142912.html
参考第一种安装方式
- 将dist.zip放到任意文件夹下解压
unzip dist.zip
- 拿到解压后文件夹的当前文件目录: pwd
例如: /home/dist
- 打开nginx配置文件 nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok (配置文件地址)
nginx: configuration file /etc/nginx/nginx.conf test is successful
打开配置文件 vi /etc/nginx/nginx.conf
修改配置文件 下面为需要修改的部分
server {
listen 8083; // 这个是暴露的端口号,需要在腾讯云或者阿里云上放开端口访问
server_name localhost; // 不变
autoindex on; // 不变
location / {
root /home/dist; // 这个就是你通过pwd拿到的地址
index index.html index.htm;
}
}
- 重启nginx