gpt4 book ai didi

Azure Function 代理到 root

转载 作者:行者123 更新时间:2023-12-02 00:59:30 25 4
gpt4 key购买 nike

有人知道我在这里缺少什么吗?

我希望我的代理将所有请求路由到我的 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}"
}
}
}

最佳答案

{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"Root URI to Redirector Trigger Function": {
"matchCondition": {
"route": "/{*path}",
"methods": [
"GET"
]
},
"backendUri": "https://myfunction.azurewebsites.net/ActualFunctionName"
}
}
}

想通了

关于Azure Function 代理到 root,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51546537/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com