标签:-o 服务器 master 进程 修改 pretty images style html
[root@bj-esbp-mid1 sbin]# ./nginx
[root@bj-esbp-mid1 sbin]# ps -ef | grep nginx
root 14982 1 0 14:13 ? 00:00:00 nginx: master process ./nginx
nobody 14983 14982 0 14:13 ? 00:00:00 nginx: worker process
root 14989 2421 0 14:16 pts/0 00:00:00 grep nginx
./nginx -s reload
1、npm run build
2、把dist里的文件打包上传至服务器
项目部署结构:
/data/www/ESBP_WEB/dist
|—–index.html
|—–js
|—–css
|—–images
….
/usr/local/nginx/conf
下面的nginx.conf
文件: location / {
root /data/www/ESBP_WEB/dist;
index index.html index.htm;
}
标签:-o 服务器 master 进程 修改 pretty images style html
原文地址:https://www.cnblogs.com/zhumiao/p/9091568.html