mirror of
https://github.com/unraid/api.git
synced 2026-01-03 23:19:54 -06:00
24 lines
713 B
JSON
24 lines
713 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/pm2-ecosystem",
|
|
"apps": [
|
|
{
|
|
"name": "unraid-api",
|
|
"script": "./dist/main.js",
|
|
"cwd": "/usr/local/unraid-api",
|
|
"exec_mode": "fork",
|
|
"wait_ready": true,
|
|
"listen_timeout": 15000,
|
|
"max_restarts": 10,
|
|
"min_uptime": 10000,
|
|
"ignore_watch": [
|
|
"node_modules",
|
|
"src",
|
|
".env.*",
|
|
"myservers.cfg"
|
|
],
|
|
"out_file": "/var/log/unraid-api/unraid-api.log",
|
|
"error_file": "/var/log/unraid-api/unraid-api.error.log",
|
|
"kill_timeout": 10000
|
|
}
|
|
]
|
|
} |