Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/praneethsonu/aws-three-tier-web-app
Three tier web application deployment using AWS services.
https://github.com/praneethsonu/aws-three-tier-web-app
applicationloadbalancer aws ec2 rds s3 subnets three-tier-architecture vpc
Last synced: 17 days ago
JSON representation
Three tier web application deployment using AWS services.
- Host: GitHub
- URL: https://github.com/praneethsonu/aws-three-tier-web-app
- Owner: praneethsonu
- Created: 2024-11-01T13:46:35.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-20T19:01:01.000Z (about 1 month ago)
- Last Synced: 2024-11-20T19:38:58.358Z (about 1 month ago)
- Topics: applicationloadbalancer, aws, ec2, rds, s3, subnets, three-tier-architecture, vpc
- Language: JavaScript
- Homepage:
- Size: 226 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## AWS Three-Tier Web Architecture
## Description:
This project is a hands-on walkthrough of a three-tier web architecture in AWS. We will be manually creating the necessary network, security, app, and database components and configurations in order to run this architecture in an available and scalable manner.## Tier Architecture explanation:
- **Web Server**: This is the front part of a web application that displays the website to users. It handles how the site looks and interacts with users, like showing product pages or allowing people to sign up.- **Application Server**: This middle part manages the business logic and processes user actions. For example, it checks the inventory to see if a product is in stock or updates a user's account details.
- **Database Server**: This is the back-end part that stores all the data for the application. It uses databases like MySQL or PostgreSQL to keep track of information.
## Architecture Overview:In this architecture, a public-facing Application Load Balancer forwards client traffic to our web-tier EC2 instances. The web tier is running Nginx web servers that are configured to serve a React.js website and redirect our API calls to the application tier’s internal facing load balancer. The internal facing load balancer then forwards that traffic to the application tier, which is written in Node.js. The application tier manipulates data in an Aurora MySQL multi-AZ database and returns it to our web tier. Load balancing, health checks, and autoscaling groups are created at each layer to maintain the availability of this architecture.
## Getting Started
Follow the instructions in the [Get Started](https://github.com/praneethsonu/AWS-Three-Tier-Web-App/tree/main/Get%20Started) directory to set up and deploy the infrastructure.
## Summary
This architecture ensures high availability, scalability, and reliability by distributing the load, monitoring instance health, and scaling resources dynamically. The web tier serves the front end and routes API calls, the application tier handles business logic and interacts with the database, and the database tier provides robust data storage and retrieval.