
A dynamic website is a type of website that contains dynamic pages that keep changing on different sessions, unlike static pages that require manual updating before the contents change. It supports both server-side scripting and client-side scripting in making the content of the website dynamic. A dynamic website display different content each time the website is opened. On a dynamic website, you can create user accounts, and delete accounts and you can log in with the correct credentials to a dynamic website. Therefore, Amazon Elastic Compute Cloud (Amazon EC2) is a secure web service provided by AWS that has a computing capacity that can be resizable. It is also known as virtual machines designed to make cloud computing easier for solution architects. Similarly, With EC2 there is no stop in your configuration capacity. Nevertheless, It provides you with complete control of available computing resources.
If you want a guide on how to host a static website on S3 click here. In this guide, we will be discussing how easy it is to deploy a dynamic website to AWS EC2.
Setting up your AWS Account
Create an account via https://portal.aws.amazon.com/billing/signup

Consequently, Log in to the AWS management console: https://signin.aws.amazon.com/

Moreover, After you have successfully created an AWS account and logged in, then navigate to S3 under the services→storage option. However, The next step is to create an S3 Bucket where you will upload your dynamic website files. Nonetheless, If you want to know how to create an S3 bucket read this Hosting Static Website and Versioning on AWS S3
Follow the below steps as we create our EC2 and upload our dynamic files from the S3 bucket we created. Furthermore, But note that when one service needs another service there is a need to create a role.
In addition, Let’s create a role first in IAM before creating EC2.
- Under access management in IAM, click on Roles.
- Click on Create role

3. Additionally, Select AWS Service as the type of trusted service, we are picking this because we need a role for EC2. Therefore, Under the common use cases click on EC2 and click on Next:Permissions.

4. Nevertheless, Since we need access to files on S3 search for AmazonS3FullAccess, select it, and click next.

5. Similarly, On the review page, enter the Role name and click Create role.

Now our Role is created

Nonetheless, Now let’s go ahead to configure our EC2.
6. Consequently, Under compute services, click on EC2

7. In addition, Click on Instances (running) and Launch instances

8. Now select your Amazon Machine Image. Moreover, But in this guide, we will be using Amazon Linux 2 free tier.

9. Click Next: Configure Instance Details.
Furthermore, This is the page you configure your instances by entering all needed details to launch your VM. However, Confirm that you select the IAM role we created earlier. Click Next: Add Storage. If you want you can add tags in the next page after adding storage.

10. Therefore, Click on Configure Security Group. This is a firewall that helps you to control the traffic to your instance. Additionally, Add all the rules shown in the image below: click Review and Launch.

11. Similarly, Create a new key pair that is authorized for connecting securely to the EC2. This is very necessary for secured access to your instance. Nevertheless, Save it and keep it secret to yourself. After saving the key go ahead and launch the instance.

12. Nonetheless, you need to download an application to SSH into the instance. Consequently, I will recommend either AWS System Manager or MobaXterm, but in our case, we will be making use of the latter in this guide. Download MobaXterm from here get the installer edition.

13. Make sure you copy the Public IPv4 address or Public IPv4 DNS. Moreover, It will be useful in the MobaXterm for SSH connection to the instance. In addition, Click on settings on the MobaXterm.

14. Furthermore, On the Persistent home directory location where you have the key pair. Click ok. It will request you restart the application and grant the request.
15. However, Click on Start local terminal and on the terminal type ls –l | grep “name of key pair” to confirm if the key exists on MobiXterm.

16. Therefore, Let’s connect to our instances from MobiXterm. Additionally, Select the instances and make sure its running. Click on Connect.

17. Nevertheless, Click on SSH and copy the command shown as an example and paste to your MobiXterm terminal and enter.

18. Consequently, you should get something like the image below that will confirm you are inside the EC2 Instance. Similarly, The private IP of our EC2 Instance 172.31.43.39 now display on the terminal.

19. In addition, Is time to start entering the below commands one after the other to set up the web server environment on our instance. Nonetheless, also copy the dynamic files into the /var/www/html/ folder. You can cd to this directory to confirm the directory exists and use ls to confirm all the files in it.

20. Moreover, Copy the Public IPv4 DNS ec2-18-216-16-37.us-east-2.compute.amazonaws.com from the EC2 Console and paste it into a browser.However, Congratulations you just deployed a dynamic website to AWS EC2.

I hope you found this blog post on How to Deploy a Dynamic Website to AWS EC2 very interesting and helpful. Furthermore, If you have any questions do not hesitate to ask in the comment section.