Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 855 Bytes

File metadata and controls

35 lines (28 loc) · 855 Bytes
author DavidCBerry13
ms.author daberry
ms.topic include
ms.date 01/29/2022
ms.service azure-app-service

Get the <URL> from your Kudu Environment:

  1. Open your app in the Azure portal and select Development Tools > Advanced Tools, then select Go.
  2. Copy the value from the address bar and append /api/zipdeploy.
curl -X POST \
    -H 'Content-Type: application/zip' \
    -u '<deployment-user>' \
    -T <zip-file-name> \
    <URL>

For PowerShell, make sure to enclose the username in single quotes so PowerShell does not try to interpret the username as a PowerShell variable.

curl -X POST `
    -H 'Content-Type: application/zip' `
    -u '<deployment-user>' `
    -T <zip-file-name> `
    <URL>