You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function Proxies forwarding to the same function app will fail if the request is to an http trigger function with routes and the route has '/' in it.
#2161
Closed
safihamid opened this issue
Nov 27, 2017
· 1 comment
Sample proxy:
"catchAllRoutes": {
"matchCondition": {
"route": "/proxy/{*path}"
},
"backendUri": "http://localhost/{path}",
"requestOverrides": {
"backend.request.headers.accept": "text/plain"
}
},
sample http trigger function:
{
"bindings": [
{
"authLevel": "anonymous",
"name": "req",
"type": "httpTrigger",
"direction": "in",
"route": "myroute/mysubroute"
},
{
"name": "$return",
"type": "http",
"direction": "out"
}
],
"disabled": false
}
The text was updated successfully, but these errors were encountered: