PHP & MySQL on AWS

0

Hello,

I'm new to the AWS issue and would like to get a machine there to function basically as a localhost server (MAMP, WAMP, XAMPP) to function as a website, but with everything these "packets" already offer. What packages do I need to purchase? At the free level is it possible? I want to make available on the internet with a specific domain.

Thankful,

    
asked by anonymous 23.02.2017 / 14:07

1 answer

0

Expensive,

When you are uploading your EC2 instance you can select an already pre-configured ami in the AWS Marketplace, search for LAMP (there are free options) or WAMP (only paid).

Another option is to upload a pure instance (only with OS) and install the required packages through IIS (win) or the specific package manager of the chosen Linux distro (there are several tutos for this ex: link ).

It is possible to install everything at the free level as long as you choose the EC2 instance of type t2.micro (it only gives 1 instance for linux + 1 instance for Windows if used 24hr / day) and that its storage (EBS) does not exceed 30GB. To make it available on the internet with a specific domain you will need to use Route 53, which is not in the free tier but costs $ ~ 0.50 per domain.

Source: link

Thank you.

    
24.03.2017 / 15:46