Azure – Where to store the connection string in an Azure Web App for blob storage

azure

https://azure.microsoft.com/sv-se/documentation/articles/storage-dotnet-how-to-use-blobs/

The article does not say where to store the connection string for a Azure Web App.

Does anyone know?

Best Answer

Azure Web Apps (websites) provide an Application settings configuration area that you can access to store these types of settings:

App settings

These settings may be in your web.config, as you already discovered. However, if you specify them in your Application settings for your Web App, the web.config values will be overridden by values found in Application settings (see this article which mentions this specifically).