【发布时间】:2017-10-04 14:19:57
【问题描述】:
我的 Web 应用部署在 Azure 门户中。我想从我的解决方案中删除整个 web.config 文件,并想在 Azure 中对其进行配置。是否可以这样做,如果可能的话,我需要在哪里提供 web 配置的 azure 值,例如 appSettings、system.web、azure 中的运行时。提前致谢
【问题讨论】:
标签: azure azure-web-app-service
我的 Web 应用部署在 Azure 门户中。我想从我的解决方案中删除整个 web.config 文件,并想在 Azure 中对其进行配置。是否可以这样做,如果可能的话,我需要在哪里提供 web 配置的 azure 值,例如 appSettings、system.web、azure 中的运行时。提前致谢
【问题讨论】:
标签: azure azure-web-app-service
是否可以这样做,如果可能的话,我需要在哪里提供 web 配置的 azure 值,例如 appSettings、system.web、azure 中的运行时。
是的,我们可以使用App Service Editor (Preview) 配置它们。我们可以从以下网址访问它。但它也包含在您的 Azure 解决方案中。
https://{yourWebsiteName}.scm.azurewebsites.net/dev/wwwroot/web.config
我们还可以使用Azure appsetting 配置不想包含在 web.config 中的敏感信息。
【讨论】: