This repository has been archived on 2023-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
odproxy-deprecated/config.json

23 lines
530 B
JSON

{
"listen": "8080",
"socket": false,
"map": [
{
"hosts": ["docker-service.local"],
"type": "control",
"start_cmd": "docker-compose -f /path/to/docker-compose.yml start",
"stop_cmd": "docker-compose -f /path/to/docker-compose.yml stop",
"socket": false,
"listen": "http://127.0.0.1:3000",
"timeout": 120
},
{
"hosts": ["node-webserver.local"],
"type": "process",
"start_cmd": "PORT=listen.sock node ./server/index.js",
"socket": true,
"listen": "listen.sock",
"timeout": 120
}
]
}