thecrusader
thecrusader

Reputation: 311

Web Config file to Azure Portal

My web app is deployed in Azure Portal. I want to remove entire web.config file from my solution and want to configure it in Azure. Is it possible to do it, if possible where do I need to give the values in azure of web config like appSettings, system.web, runtime in azure. Thanks in advance

Upvotes: 1

Views: 1521

Answers (1)

Tom Sun
Tom Sun

Reputation: 24549

Is it possible to do it, if possible where do I need to give the values in azure of web config like appSettings, system.web, runtime in azure.

Yes, we could config them with App Service Editor (Preview). We could visit it from the following url. But It is also included in your solution in the azure.

https://{yourWebsiteName}.scm.azurewebsites.net/dev/wwwroot/web.config

We also could config sensitive info that don't want to include in the web.config with Azure appsetting.

Upvotes: 2

Related Questions