英文:
Azure Web App Service returns 403 HostNames Disabled
问题
我使用 Bicep 创建了一个 Azure Web 应用服务,并在部署代码后调用 API 时返回以下错误信息:
> 403 主机名已禁用
如果通过界面访问主机,会显示:
> 错误 403 - 此 Web 应用已停止
我尝试按照建议进行操作,似乎不是重启、配额或代码问题。我尝试使用 Kudu/CMD 启动我的站点,命令是 dotnet MyApp.dll
,它可以正确启动。
英文:
I created an Azure web app service using Bicep, and after deploying the code when calling the API it returns:
> 403 HostNames Disabled
If I access the host through the UI it shows:
> Error 403 - This web app is stopped
I have tried following the recommendations and it doesn't seem to be an issue of restarting, quotas, or a code issue. I tried with Kudu/CMD to start my site with dotnet MyApp.dll
and it starts correctly.
答案1
得分: 1
在审查我的 Bicep 代码后,我意识到我已将属性 hostNamesDisabled
设置为 true,导致应用程序返回上述状态码。
英文:
After reviewing my own Bicep code, I realized I had set the property hostNamesDisabled
to true, causing the application to return the status code above.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论