{ "admin": { "listen": ":2019" }, "apps": { "http": { "servers": { "file_sync_server": { "listen": [":8080"], "routes": [ { "match": [ { "matcher": "path", "paths": ["/api/*", "/ws"] } ], "handle": [ { "handler": "file_sync", "root": "./sync-data", "enable_upload": true } ] }, { "match": [ { "matcher": "path", "paths": ["/*"] } ], "handle": [ { "handler": "file_server", "root": "./web-ui", "browse": false } ] }, { "handle": [ { "handler": "static_response", "status_code": 404, "body": "Not Found" } ] } ] } } } } }