nginx 部署前端项目
前言nginx如何部署打包成为dist的前端项目。读者须知: nginx如何安装与使用PSdocker 安装与使用docker pull nginxdocker run --restart=on-failure:20 -itd --name nginx -p 80:80 nginx:latestSEOnginx如何部署dist?nginx如何部署vue?nginx如何部署前端项目...
·
前言
nginx如何部署打包成为dist的前端项目。读者须知: nginx如何安装与使用
PS
docker 安装与使用
docker pull nginx
docker run --restart=on-failure:20 -itd --name nginx -p 80:80 nginx:latest
SEO
nginx如何部署dist?
nginx如何部署vue?
nginx如何部署前端项目?
安装nginx后,配置
该文件放在/etc/nginx/conf.d/xxx.conf
server{
listen 80;
server_name xxx.com;
location /{
root /home/web/vueProjects/wxopapp/dist/;
index index.htm index.html;
expires 30d;
}
}
nginx -t
nginx -s reload
更多推荐
已为社区贡献5条内容
所有评论(0)