{ "admin": { "listen": ":2019" }, "apps": { "http": { "servers": { "proxy_server": { "listen": [":8080"], "routes": [ { "match": [ { "matcher": "path", "paths": ["/api/*"] } ], "handle": [ { "handler": "reverse_proxy", "upstreams": [ { "dial": "localhost:3000" }, { "dial": "localhost:3001" } ], "load_balancing": { "selection_policy": { "policy": "round_robin" } } } ] }, { "handle": [ { "handler": "static_response", "status_code": 200, "headers": { "Content-Type": ["application/json"] }, "body": "{\"message\": \"Caddy-RS Reverse Proxy is running!\", \"version\": \"0.2.0\", \"features\": [\"TLS\", \"HTTP2\", \"Load Balancing\", \"File Sync\"]}" } ] } ] } } } } }