0

There are two Web apps(WebSite1, WebSite2) hosted in Azure. It is observed that WebSite1 is working fine for me. So we want whatever contents are there in WebSite1, those contents needs to be copied to Website2.

Any suggestions.

Manas Kumar
  • 2,411
  • 3
  • 16
  • 23
  • Simplest and straight forward is to use FTP to download from one and upload to another. As best practice, the source of content (truth) should be in some repository so you can deploy to any future website and backup in case you accidentally delete the site. – Suwat Ch Sep 21 '19 at 18:14

1 Answers1

0

As mentioned in the comment, you could use the FTP e.g Filezilla to download the files in the wwwroot of your web app1 and upload to the web app2.

Or if you don't mind to create a new web app2, you can use the Azure App Service App Cloning Using PowerShell feature, note the current restrictions. To clone the app, you can also do that in the azure portal -> your web app1 -> Clone App.

Joy Wang
  • 39,905
  • 3
  • 30
  • 54
  • If my reply is helpful, please accept it as answer(click on the mark option beside the reply to toggle it from greyed out to fill in.) – Joy Wang Sep 23 '19 at 06:25