这里我以yunfenghui商城为例
https://github.com/lolongwell...
第一步,在虚拟主机上添加一个站点,如yunfenghui.lolong.xyz
lnmp vhost add
然后,一路敲回车。(注意需要在云主机上解析域名,详细步骤参考【项目上线】04)
第二步,通过git把项目克隆到对应位置,此例克隆到/home/wwwroot/yunfenghui.lolong.xyz目录下
cd /home/wwwroot/yunfenghui.lolong.xyz
git clone https://github.com/lolongwell/YunFengHuiShop.git
第三步,通过npm或者cnpm安装对应依赖包
国内主机建议配置cnpm,安装速度更快
npm i -g cnpm --registry=https://registry.npm.taobao.org
安装api(后台)依赖包node_modules
cd /home/wwwroot/yunfenghui.lolong.xyz/YunFengHuiShop/api
cnpm i
安装client(前台)依赖包node_modules
cd /home/wwwroot/yunfenghui.lolong.xyz/YunFengHuiShop/client
cnpm i
第四步,MongoDB导入数据,将/YunFengHuiShop/resource文件中的dumall-users和dumall-goods数据导入数据库
cd /home/wwwroot/yunfenghui.lolong.xyz/YunFengHuiShop
mongoimport -d=shop -c=users ./resource/dumall-users
mongoimport -d=shop -c=goods ./resource/dumall-goods
第五步,上线前,将文件打包到dist目录
cd /home/wwwroot/yunfenghui.lolong.xyz/YunFengHuiShop/client
npm run build
第六步,配置Nginx环境,修改root路径,修改代理配置
此处,需要了解vue项目开发的跨域问题,详细文章参考https://segmentfault.com/a/11...
vim /usr/local/nginx/conf/vhost/yunfenghui.lolong.xyz.conf
修改完成后,输入 :wq 保存并退出,然后重启Nginx服务
/etc/init.d/nginx restart
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。