agmission/Others/scripts/cleanup_worker-pm2.json

26 lines
661 B
JSON
Executable File

{
"apps": [
{
"interpreter" : "node@14.17.2",
"name": "cleanup-worker",
"script": "cleanup_worker.js",
"node_args" : ["--expose-gc", "--max-old-space-size=1048", "--nouse-idle-notification"],
"watch": false,
"exec_mode": "fork",
"instances": 1,
"cwd": "/media/ssd1/agmission/workers",
"error_file": "~/.pm2/logs/err.log",
"out_file": "~/.pm2/logs/out.log",
"merge_logs": false,
"env": {
"NODE_ENV": "production",
"PRODUCTION": 1,
"DEBUG": "agm:*"
},
"max_restarts" : 10,
"min_uptime" : "24h",
"log_date_format": ""
}
]
}