Showing
1 changed file
with
14 additions
and
0 deletions
INSTALL.md
0 → 100644
1 | +# 新程序线上安装方法 | ||
2 | + | ||
3 | +**Node 版本必须 >= 4.2, 全局安装 PM2** | ||
4 | + | ||
5 | +## 安装启动 | ||
6 | + | ||
7 | +1. 拉取 <http://git.dev.yoho.cn/web/yoho-activity-node.git> 的 master 分支代码; | ||
8 | +2. 进入程序所在目录,使用 `npm install --production --registry=https://registry.npm.taobao.org`, 安装程序依赖包; | ||
9 | +3. 在程序所在目录使用 `pm2 start bin/www -i 0 --name "yoho-activity-node"` 启动程序,程序监听 9646 端口; | ||
10 | +4. 配置 Nginx/Apache 相关服务,将 `activity.yohobuy.com` 的访问请求,全部代理到程序所在服务器的 9646 端口。 | ||
11 | + | ||
12 | +## 重启 | ||
13 | + | ||
14 | +执行 `pm2 restart yoho-activity-node` |
-
Please register or login to post a comment