Mobile app version of vmapp.org
Login or Join
Si4351233

: Azure App Service for Basic Bootstrap Site with PHP I have an Azure Imagine subscription through my College so I plan to take advantage of it to host a basic Bootstrap resume site of sorts.

@Si4351233

Posted in: #Azure #Php #WebHosting

I have an Azure Imagine subscription through my College so I plan to take advantage of it to host a basic Bootstrap resume site of sorts. I was originally considering using Github Pages, but I'd like to use PHP to validate a contact form, which rules out using Github Pages which can only serve static content.

Anyway, I'm not sure which Azure item to use. Should I simply be creating an Empty PHP App?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Si4351233

1 Comments

Sorted by latest first Latest Oldest Best

 

@Martha676

What you choose is really up to you, but if you're avoiding Virtual Machines, Azure provides Web Apps (part of the App Service PaaS offering). I have no idea what your subscription supports, but Web Apps allow you to push your code up without concern for underlying OS (thought it supports both Windows and Linux, in case your app has OS-specific dependencies). Simple to scale up to higher/more capable tiers, and out to multiple instances (the features, and scaling, have differences for the various performance tiers). Note that the Linux variant is in preview, though both variants support PHP. You'll be able to push your code through an SCM provider (e.g. github) or via ftp.

Outside of Web Apps, you'd have:


Cloud Services (web/worker stateless Windows Server VMs)
Virtual Machines (Windows/Linux with many supported variants / distros)
Service Fabric (a managed microservice offering)

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme