VPC 2-Tier Architecture: Hosting a College Form Page with LEMP Stack

Shreyash MyakalShreyash Myakal
3 min read

. Overview

In this project, we set up a two-tier architecture on AWS using a custom VPC. The architecture consists of:

  • A Web Server (public subnet) hosting a PHP form.

  • A Database Server (private subnet) running MariaDB.

  • Secure networking components: VPC, subnets, route tables, Internet Gateway (IGW), and NAT Gateway.


. VPC and Networking Setup


Step 1: Create a Custom VPC

  • Go to AWS Management Console โ†’ VPC Service โ†’ Create VPC.

  • Set Name: my-vpc.

  • Set CIDR Block: 10.0.0.0/16.

  • Click Create VPC.

๐Ÿ“Œ Screenshot:


Step 2: Create Subnets

  • Web Subnet

    • CIDR Block: 10.0.1.0/24

    • Select my-vpc.

    • Enable Auto-assign public IP.

  • Database Subnet

    • CIDR Block: 10.0.2.0/24

    • Select my-vpc.

    • No auto-assign public IP.

๐Ÿ“Œ Screenshots:


Step 3: Create Route Table and Attach to Web Subnet

  • Go to Route Tables โ†’ Create Route Table.

  • Set Name: my-rt2.

  • Attach to my-vpc.

  • Select web-subnet and associate it.

๐Ÿ“Œ Screenshots:


Step 4: Create an Internet Gateway

  • Go to Internet Gateways โ†’ Create IGW.

  • Name it my-igw.

  • Attach it to my-vpc.

  • Edit Route Table and add:

    • Destination: 0.0.0.0/0

    • Target: my-igw

๐Ÿ“Œ Screenshots:


Step 5: Create a NAT Gateway

  • Go to NAT Gateways โ†’ Create NAT Gateway.

  • Attach it to web-subnet.

  • Allocate an Elastic IP.

  • Create a new Route Table for db-subnet:

    • Destination: 0.0.0.0/0

    • Target: NAT Gateway

    • Do NOT use an Internet Gateway.


. Launching EC2 Instances


Step 6: Create Web and Database Servers

  • Web Server

    • Ubuntu 22.04, in web-subnet (public)

    • Enable Auto-assign Public IP.

  • Database Server

    • Ubuntu 22.04, in db-subnet (private)

    • No Public IP.

๐Ÿ“Œ Screenshot:


Transferring Files and Installing LEMP Stack


Step 7: Send Key Pair & LEMP Script to Web Server

๐Ÿ“Œ Screenshot:


Step 8: Connect to Web Server & Install LEMP Stack

  • LEMP Setup:

    • Install Nginx, PHP, MySQL Client (not MariaDB)

    • Start and enable Nginx & PHP

๐Ÿ“Œ Screenshot:


Step 9: Create Web Form Files

Create form.html:

๐Ÿ“Œ Screenshot:

Create submit.php:

๐Ÿ“Œ Screenshot:


. Configuring Database Server


Step 10: Connect from Web Server to Database Server

Install MariaDB on Database Server

๐Ÿ“Œ Screenshot:


Step 11: Add Web Server Sg to DB Server

๐Ÿ“Œ Screenshot:


Step 12: Secure and Configure MySQL

๐Ÿ“Œ Screenshot:


. Final Validation and Testing


Step 15: Access the Web Form

๐Ÿ“Œ Screenshot:


Step 16: Verify Data in Database

๐Ÿ“Œ Screenshot:


. Conclusion

In this project, we establish a two-tier architecture on AWS using a custom VPC to host a college form page powered by the LEMP stack. The architecture includes a public subnet for the web server running PHP and a private subnet for the database server with MariaDB. Key steps involve setting up secure networking components, launching EC2 instances, transferring files, and installing necessary software. We conclude by validating the setup through form submission and database verification.

0
Subscribe to my newsletter

Read articles from Shreyash Myakal directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Shreyash Myakal
Shreyash Myakal

Iโ€™m currently learning Linux, AWS, DevOps, MySQL, and related technologies, aiming to become a Cloud Engineer. Passionate about cloud infrastructure and automation, Iโ€™m excited to apply these skills in real-world projects.