delux
delux

Reputation: 1876

How to host a web app at Amazon WS

I have web app that is created using PHP and for DB I'm using phpMyAdmin SQL database. The app is hosted on Linux based server, for FTP access I'm using FIleZila and NotePad++ and for DB access I'm using phpMyAdmin.

Now i need to host this app on Amazon WS. I have credentials for Amazon WM account, but I don't know how to start. I have take a look at the documentation, but I can not figure out how to set up the DB and then to set up the site so it can be hosted at their server.

Can you guys give me some tips, tutorials, or something that will help me in this?

Upvotes: 0

Views: 82

Answers (1)

patrickdamery
patrickdamery

Reputation: 539

You want to deploy an ec2 instance, they'll give you ssh access. You can then access it with putty and then install LAMP on it. https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu there's a nice tutorial on how to install it. Once you got that done you can upload your app and set up your database. You will also need to get a domain name and sort out the dns for it. You can do that with Amazon's route 53

Upvotes: 1

Related Questions