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.
28 lines
780 B
28 lines
780 B
3 years ago
|
module.exports = {
|
||
|
apps: [
|
||
|
{
|
||
|
name: "readmongo",
|
||
|
autorestart: true,
|
||
|
watch: true,
|
||
|
//"script" : "/home/node/swarmlab-app/run/app.js",
|
||
3 years ago
|
cwd: "/home/node/readmongo/swarmlab-app/src",
|
||
3 years ago
|
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,
|
||
|
},
|
||
|
],
|
||
|
};
|