有人知道我在这里想念什么吗?
我希望我的代理将所有请求路由到我的azure函数根URL,再路由到我的函数。
此链接https://myfunction.azurewebsites.net/ 与此链接https://myfunction.azurewebsites.net/MYShinyNewFunction
相同这是我的proxy.json
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"Root URI to Redirector Trigger Function": {
"matchCondition": {
"route": "/{*path}",
"methods": [
"GET"
]
},
"backendUri": "https://localhost/{*path}"
}
}
}
答案 0 :(得分:1)
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"Root URI to Redirector Trigger Function": {
"matchCondition": {
"route": "/{*path}",
"methods": [
"GET"
]
},
"backendUri": "https://myfunction.azurewebsites.net/ActualFunctionName"
}
}
}
想通了