nginx
安装nginx
# 查看dnf版本
dnf --version
# 查找是否是否安装
dnf search nginx
# 安装nginx
dnf install nginx
# 启动nginx
systemctl start nginx
# 查看nginx运行状态
systemctl status nginx
# 相当于开机自启(重启服务器,nginx自动启动)
systemctl enable nginx
打包传输
vue3项目打包后生成dist文件夹,传输到服务器的 /root文件夹下
配置nginx
- 切换到nginx配置文件
# 该文件夹下的nginx.conf文件
cd /etc/nginx/
- 编辑nginx.conf文件,a编辑状态
vim nginx.conf
3. 重启nginx服务器
systemctl restart nginx