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.
23 lines
619 B
23 lines
619 B
module.exports = {
|
|
"apps": [
|
|
{
|
|
"name" : "www",
|
|
"autorestart" : true,
|
|
"watch" : true,
|
|
"cwd" : "/home/node/swarmlab-app",
|
|
"script" : "nginx -g 'daemon off;'",
|
|
"exec_interpreter" : "none",
|
|
"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
|
|
}
|
|
]
|
|
}
|
|
|
|
|