remex/config.json

28 lines
420 B
JSON

{
"server": {
"listen": "0.0.0.0",
"port": 3000
},
"log": {
"level": "debug",
"timestamp": "DD.MM.YYYY HH:mm:ss:SS"
},
"api": [
{
"url": "/tail",
"type": "get",
"command": "tail",
"args": [
"-f", "/tmp/test"
],
"detach": true
},
{
"url": "/uptime",
"type": "get",
"command": "uptime",
"args": [
]
}
]
}