logger/ecosystem.json
martind2000 cf113a90e6 init
2016-03-08 21:10:12 +00:00

34 lines
663 B
JSON

{
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps: [
// First application
{
"name": "Keeper",
"script": "keeper-server.js",
"cwd": "/var/www/keeper",
"watch": true,
"max_restarts": 64,
"merge_logs" : true,
"autorestart" : true,
"restart_delay" : 3500,
"max_memory_restart" : "300M",
env: {
COMMON_VARIABLE: "true"
},
env_production: {
NODE_ENV: "production"
}
}
],
/**
* Deployment section
* http://pm2.keymetrics.io/docs/usage/deployment/
*/
deploy: {
}
}