Browse Source

async

master
zeus 4 years ago
parent
commit
0780b8d2d2
  1. 25
      ecosystem.config.js

25
ecosystem.config.js

@ -1,6 +1,6 @@
module.exports = { module.exports = {
"apps": [ "apps": [
{ {
"name" : "write2mongo", "name" : "write2mongo",
"autorestart" : true, "autorestart" : true,
"watch" : true, "watch" : true,
@ -22,7 +22,28 @@ module.exports = {
"max_restarts": 10, "max_restarts": 10,
"max_memory_restart": "500M", "max_memory_restart": "500M",
"restart_delay": 1000 "restart_delay": 1000
},
{
"name" : "write2proxy",
"autorestart" : true,
"watch" : true,
"cwd" : "/home/node/swarmlab-app",
"script" : "nginx -g 'daemon off;'",
//"script" : "./run-nginx.sh",
//"exec_interpreter" : "bash",
"exec_interpreter" : "none",
//"pid_file" : "/home/node/run/pidnginx.pid",
"log_type" : "json",
"log_file" : "/home/node/logs/logfilenginx",
"error_file" : "/home/node/logs/errorfilenginx",
"out_file" : "/home/node/logs/outfilenginx",
"log_date_format": "YYYY-MM-DD HH:mm Z",
"merge_logs" : true,
"exec_mode" : "fork_mode",
"max_restarts": 10,
"max_memory_restart": "500M",
"restart_delay" : 1000
} }
] ]
} }

Loading…
Cancel
Save