Swapnil Mahajan
Swapnil Mahajan

Reputation: 271

Is it possible to deploy PHP application on azure (WebApps) without using FTP?

Hi i have recently deploy my PHP(5.4) application to windows azure i.e.Web Apps.For that purpose I have used FTP to transfer my local files to azure.

Is there is any wayout so that I can just click and publish my PHP application to Azure like what we do in .net VS application (Right click publish) ?

Upvotes: 0

Views: 187

Answers (1)

David Makogon
David Makogon

Reputation: 71120

As others have mentioned in comments, there are several continuous-integration sources for deployment. Assuming you're using the new portal (portal.azure.com), just pull up your web app and scroll down below Essentials. Near the bottom, you'll see the area about continuous deployments. If you haven't set it up yet, you'll see something asking you to set it up. Click, and then choose your source:

CI setup

Once you set this up, you should be able to manage your deployments by simply pushing code to your repository.

Upvotes: 1

Related Questions