nginx部署Vue前端项目
nginxnginx地址:10.0.1.101位置:/usr/local/nginx/访问地址:10.0.1.101:80启动[root@bj-esbp-mid1 sbin]# ./nginx查看进程[root@bj-esbp-mid1 sbin]# ps -ef | grep nginxroot1498210 14:13 ?00:00:00 n
·
nginx
- nginx地址:10.0.1.101
- 位置:/usr/local/nginx/
- 访问地址:10.0.1.101:80
启动
[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
….
- 3、配置nginx监听80端口:
编辑/usr/local/nginx/conf
下面的nginx.conf
文件:
修改访问的默认文件位置:
location / {
root /data/www/ESBP_WEB/dist;
index index.html index.htm;
}
- 4、浏览器访问http://10.0.1.101/即可
更多推荐
已为社区贡献1条内容
所有评论(0)