pm25
Version:
Production process manager for Node.JS applications with a built-in load balancer.
25 lines (23 loc) • 435 B
JSON
{
/**
* Application configuration section
* http://pm2.PM25.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"
},
]
}