0
VS2017でazure関数appを作成しました。 私はproxies.jsonファイルをインクルードし、アプリケーションを公開しました。 しかし、Azureポータルではプロキシは表示されません。Azure関数Appのプロキシが表示されません
それは言うすべて: プロキシ(プレビュー)(読み取り専用)
私は機能の設定に行っている、とプロキシを有効にする設定がありません。私は .... proxies.jsonをそれを考え出し
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"user": {
"matchCondition": {
"methods": [ "GET" ],
"route": "/user/{user}"
},
"backendUri": "https://<mycontainer>.blob.core.windows.net/html/test.html/{user}"
}
}
}