-
安装
yum install nginx
-
配置nginx
-
设置开机启动
systemctl enable nginx
-
启动服务
systemctl start nginx
-
停止服务
systemctl stop nginx
-
重启服务
systemctl restart nginx
-
修改配置后热重载
systemctl reload nginx
-
-
nginx常用目录
路径 説明 /etc/nginx/ 保存Nginx设置文件的目录 /etc/nginx/nginx.conf 主配置文件 /var/log/nignx/ 日志文件目录 /usr/share/nginx/html/ 对外公开的html /etc/nginx/conf.d/default.conf 默认配置文件 (该配置文件被nginx.conf所引用) -
部署vue项目到nginx
-
编译项目
npm run build
-
将dist目录复制到Linux服务器
-
修改nginx.conf配置文件
-
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282989.html