Routing: Multiple Upstreams Behind One Domain
Split one public API domain across several backends while keeping routing rules readable.
When to use this
What this does not do
Repo-grounded example
{
"servers": [
{ "alias": "upstream", "url": "https://api.example.com/base" }
],
"paths": [
{
"method": "GET",
"path": "/proxy/{.+}",
"integration": {
"type": "http_proxy",
"server": "upstream"
}
}
]
}Troubleshooting
Related docs
Last updated