Welcome to Shaun Luttin's public notebook. It contains rough, practical notes. The guiding idea is that, despite what marketing tells us, there are no experts at anything. Sharing our half-baked ideas helps everyone. We're all just muddling thru. Find out more about our work at bigfont.ca.

FTP Access to a Single Azure Web App

Tags: azure, azure-web-apps, ftp

We want to give FTP access to a single Azure Web App but the standard Azure Web App password works for all of the Web Apps.

The solution is to distinguish deployment credentials from publish profiles.

Deployment credentials

  • Are for all web apps.
  • To change this, go to the Web App in the new portal > settings > deployment credentials.

Publish profiles

  • Are for a specific web app.
  • To view the credentials, go to the Web App in the new portal > Get public profile. In the downloaded file, find the publish profile that has the FTP publish method. You will need the publishUrl, userName, and userPWD.
  • To change this, go to the Web App in the new portal > … > Reset public profile.