Azure Restore deleted web app


Azure Restore deleted web app


Issue:
·       I deleted my web app, how to restore it?
·       Can I undo my delete web app operation?

Solution:

Good news!

Azure has launched the feature which can help you to restore the deleted web app but it can undelete the site which is deleted in last 30 days.

You can restore the content and configuration both.

Using Power Shell
-------------------------------------------------
·       Get the deleted site info,

Get-AzDeletedWebApp -Name "deleted site name"

·       Next you can restore it,

Restore-AzDeletedWebApp -ResourceGroupName "RG Name" -Name "deleted site name" -TargetAppServicePlanName "ASP Name"
-------------------------------------------------
You can also use Azure CLI.

Ref: 


Azure App Service - Code changes made to your app


Azure App Service - Code changes made to your app


Issue:
·       How to identify code changes in my app?
·       Who made the change and what was changed?


Solution:
Azure App Service has announced “Change Analysis” feature. E.g. Whatever changes you make on a file via KUDU - > The diff. of it will get reflected under the “Change Analysis” blade under “Diagnose and solve problems” tab.

You can more information in below URLs,