25 lines
441 B
JSON

{
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps : [
// First application
{
name : "http-4.6",
script : "http.js",
interpreter : "node@4.6.0"
},
{
name : "http-6.7",
script : "http.js",
force : true,
env : {
PORT : 8002
},
interpreter : "node@6.7.0"
},
]
}