Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use AWS as a web host?

Is it possible to load / host an entire website using AWS? Or is it only a service that can load specific pieces of a website - such as images, etc. Obviously, I'd want to use my own domain. If you can use it, are there any limitations?

Here's the AWS link, for context:

http://aws.amazon.com/s3/

like image 748
Matrym Avatar asked Jan 21 '10 22:01

Matrym


People also ask

Can I host my website on AWS for free?

The total cost of hosting your personal website on AWS will vary depending on your usage. Typically, it will cost $1-3/month if you are outside the AWS Free Tier limits. If you are eligible for AWS Free Tier and within the limits, hosting your personal website will cost around $0.50/month.

Can you use AWS as a server?

AWS supports everything you need to build and run Windows applications including Active Directory, . NET, Microsoft SQL Server, Windows desktop-as-a-service, and all supported versions of Windows Server.

Does Amazon do domain hosting?

When you register a domain, we automatically create a hosted zone that has the same name as the domain. You use the hosted zone to specify where you want Amazon Route 53 to route traffic for your domain. The fee for a hosted zone is $0.50 per month.

Which AWS service you can use to host web application?

EC2 can be applied to host websites that use multiple datacenters, and for sites that need to scale using load balancing, autoscaling, or external databases. Virtual Private Servers made easy! Lightsail can be used to host simple websites built on common applications such as WordPress, Joomla, Drupal, and Magento.


1 Answers

AWS = Amazon Web Services = a suite of different web services.

S3 (which you linked to) is an object store. You can't host a web service on S3.

EC2, also under the AWS umbrella, is virtualized compute space. You CAN host a web service on EC2. It is just like having a server in a rack somewhere, except that when you shut down an instance, it is gone forever. But using EBS, which is like a virtualized hard drive, will prevent you from losing your data when the EC2 instance shuts down.

See http://aws.amazon.com/ec2/ and http://aws.amazon.com/ebs/

like image 121
danben Avatar answered Sep 30 '22 14:09

danben