yum install nginx
设置开机启动
systemctl enable nginx
启动服务
systemctl start nginx
停止服务
systemctl stop nginx
重启服务
systemctl restart nginx
修改配置后热重载
systemctl reload nginx
路径 | 説明 |
---|---|
/etc/nginx/ | 保存Nginx设置文件的目录 |
/etc/nginx/nginx.conf | 主配置文件 |
/var/log/nignx/ | 日志文件目录 |
/usr/share/nginx/html/ | 对外公开的html |
/etc/nginx/conf.d/default.conf | 默认配置文件 (该配置文件被nginx.conf所引用) |
编译项目
npm run build
将dist目录复制到Linux服务器
修改nginx.conf配置文件