Sync content from a cloud folder to Azure App Service

This article shows you how to sync your content to Azure App Service from Dropbox and OneDrive.

With the content sync approach, your work with your app code and content in a designated cloud folder to make sure it's in a ready-to-deploy state, and then sync to App Service with the click of a button.

Because of underlying differences in the APIs, OneDrive for Business is not supported at this time.

Note

The Development Center (Classic) page in the Azure portal, which is the old deployment experience, will be deprecated in March, 2021. This change will not affect any existing deployment settings in your app, and you can continue to manage app deployment in the Deployment Center page.

Enable content sync deployment

  1. In the Azure portal, navigate to the management page for your App Service app.

  2. From the left menu, click Deployment Center > Settings.

  3. In Source, select OneDrive or Dropbox.

  4. Click Authorize and follow the authorization prompts.

    Shows how to authorize OneDrive or Dropbox in the Deployment Center in the Azure portal.

    You only need to authorize with OneDrive or Dropbox once for your Azure account. To authorize a different OneDrive or Dropbox account for an app, click Change account.

  5. In Folder, select the folder to synchronize. This folder is created under the following designated content path in OneDrive or Dropbox.

    • OneDrive: Apps\Azure Web Apps
    • Dropbox: Apps\Azure
  6. Click Save.

Synchronize content

  1. In the Azure portal, navigate to the management page for your App Service app.

  2. From the left menu, click Deployment Center > Redeploy/Sync.

    Shows how to sync your cloud folder with App Service.

  3. Click OK to confirm the sync.

Disable content sync deployment

  1. In the Azure portal, navigate to the management page for your App Service app.

  2. From the left menu, click Deployment Center > Settings > Disconnect.

    Shows how to disconnect your cloud folder sync with your App Service app in the Azure portal.

What happens to my app during deployment?

All the officially supported deployment methods make changes to the files in the /home/site/wwwroot folder of your app. These files are used to run your app. So the deployment can fail because of locked files. The app might also behave unpredictably during deployment because the files aren't all updated at the same time. This behavior is undesirable for a customer-facing app. There are a few ways to avoid these issues:

OneDrive and Dropbox integration retirements

On September 30th, 2023 the integrations for Microsoft OneDrive and Dropbox for Azure App Service and Azure Functions will be retired. If you are using OneDrive or Dropbox, you should disable content sync deployments from OneDrive and Dropbox. Then, you can set up deployments from any of the following alternatives

Next steps