以前运行ghost使用forever管理启动,但是现在发现pm2管理nodejs程序更好,遂尝试改造
代码如下
pm2.json
{
"apps": [{
"name": "ghost",
"script": "index.js",
"cwd": "/data/wwwroot/blog.minws.com",
"exec_mode": "cluster",
"instances": 0,
"max_memory_restart": "256M",
"autorestart": true,
"node_args": [],
"args": [],
"env": {
"NODE_ENV": "production"
}
}]
}
启动
pm2 start pm2.json
<br/>
评论 (0)