You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
module.exports = {
|
|
|
|
"apps": [
|
|
|
|
{
|
|
|
|
"name" : "write2mongo",
|
|
|
|
"autorestart" : true,
|
|
|
|
"watch" : true,
|
|
|
|
//"script" : "/home/node/swarmlab-app/run/app.js",
|
|
|
|
"cwd" : "/home/node/swarmlab-app",
|
|
|
|
"script" : "run/app.js",
|
|
|
|
"run_as_user" : "node",
|
|
|
|
"args" : "start",
|
|
|
|
//"node_args" : "--harmony",
|
|
|
|
//"node_args" : "['--trace-deprecation']",
|
|
|
|
"pid_file" : "/home/node/run/pid.pid",
|
|
|
|
"log_type" : "json",
|
|
|
|
"log_file" : "/home/node/logs/logfile",
|
|
|
|
"error_file" : "/home/node/logs/errorfile",
|
|
|
|
"out_file" : "/home/node/logs/outfile",
|
|
|
|
"log_date_format": "YYYY-MM-DD HH:mm Z",
|
|
|
|
"merge_logs" : true,
|
|
|
|
"exec_mode" : "fork",
|
|
|
|
"max_restarts": 10,
|
|
|
|
"max_memory_restart": "500M",
|
|
|
|
"restart_delay": 1000
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|