Browse Source

ecosystem

master
zeus 4 years ago
parent
commit
a19383ad7f
  1. 22
      swarmlab-app/ecosystem.config.js

22
swarmlab-app/ecosystem.config.js

@ -0,0 +1,22 @@
module.exports = {
"apps": [{
"name" : "appname",
"autorestart" : true,
"watch" : true,
"script" : "./swarmlab-app/run/app.js",
"args" : "start",
"pid_file" : "/home/ubuntu/run/pid.pid",
"log_type" : "json",
"log_file" : "/home/ubuntu/logs/logfile",
"error_file" : "/home/ubuntu/logs/errorfile",
"out_file" : "/home/ubuntu/logs/outfile",
"log_date_format": "YYYY-MM-DD HH:mm Z",
"merge_logs" : true,
//"instances": 1,
//"exec_mode": "cluster",
"exec_mode" : "fork",
"max_restarts": 10,
"max_memory_restart": "500M",
"restart_delay": 1000
}]
}
Loading…
Cancel
Save