Debugging Upstream Failures
Use this guide when proxied routes fail and you need to isolate routing, auth, and upstream behavior. Start by checking whether the gateway matched the right
When to use this
Key concepts
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