Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS vs Azure for PHP. Factors determining on which "cloud" to deploy

Is there a list of pros-cons for deploying a PHP application on the cloud for AWS or Azure?

Which factors would make AWS a better choice over Azure and Vice-versa?

If anyone has chosen to use, either one instead of the other for a number or reasons I would really want to know why.

like image 631
Andreas Avatar asked Apr 25 '10 21:04

Andreas


2 Answers

Amazon has released the AWS SDK for PHP. http://github.com/amazonwebservices/aws-sdk-for-php

like image 104
Ryan Parman Avatar answered Oct 21 '22 09:10

Ryan Parman


This basically boils down to a windows vs linux discussion. For a PHP server environment, I'd normally advise a LAMP server setup (linux/apache/mysql/php) and azure is (as far as I know and expect from microsoft) windows-only. Unless you really need windows for some reason, a linux server performs better and is more stable than a windows server, at least for a php/apache setup, and is cheaper.

I have some AWS servers running CentOS at AWS for more than a year now, and never experienced problems.

like image 2
woens Avatar answered Oct 21 '22 09:10

woens