0

How "large" of a website can one reliably host on Amazon EC2's micro instance?

Running apache, nginx, lighty, I don't care.

Just curious how far that $5.20/month would get you and why I should or should not go this route.

darkAsPitch
  • 1,861
  • 4
  • 25
  • 42

1 Answers1

5

That is so dependant on how resource heavy the site is, not possible to give an generic answer to such an unspecified question. Kind of like; how much water can the sun evaporate?

Here's what I would do:
Setup nginx + php-fpm, setup a phpinfo(); .php page, cache it with fastcgi_cache and then try it with apache benchmark, or even loadimpact.com. Don't forget to post your results! :-)

Please note that there are information that suggests that the AWS EC2 Micro Instance's CPU time frequently is stolen (I think written by a SF member), it does NOT deliver a consistent CPU resource, as stated on AWS site.

3molo
  • 4,340
  • 5
  • 30
  • 46
  • Indeed, my experience with micro is that the processing-performance usually fluctuate quite heavily. – Mark Jun 27 '11 at 07:34