根的Azure功能代理

时间:2018-07-26 19:50:53

标签: azure proxy azure-functions

有人知道我在这里想念什么吗?

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

1 个答案:

答案 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"
    }
  }
}

想通了