mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
18 lines
275 B
JavaScript
18 lines
275 B
JavaScript
module.exports = {
|
|
apps : [{
|
|
name : 'clustered_http',
|
|
script : './http.js',
|
|
instances : 'max',
|
|
exec_mode : 'cluster',
|
|
env : {
|
|
PORT : 8002
|
|
}
|
|
}, {
|
|
name : 'forked_app',
|
|
script : './http.js',
|
|
env : {
|
|
PORT : 8001
|
|
}
|
|
}]
|
|
}
|