Authored by 毕凯

增加线上安装文档

# 新程序线上安装方法
**Node 版本必须 >= 4.2, 全局安装 PM2**
## 安装启动
1. 拉取 <http://git.dev.yoho.cn/web/yoho-activity-node.git> 的 master 分支代码;
2. 进入程序所在目录,使用 `npm install --production --registry=https://registry.npm.taobao.org`, 安装程序依赖包;
3. 在程序所在目录使用 `pm2 start bin/www -i 0 --name "yoho-activity-node"` 启动程序,程序监听 9646 端口;
4. 配置 Nginx/Apache 相关服务,将 `activity.yohobuy.com` 的访问请求,全部代理到程序所在服务器的 9646 端口。
## 重启
执行 `pm2 restart yoho-activity-node`
... ...