Global content delivery for static sites using Amazon's CDN.
Demonstrates the deployment of a high-performance static website hosted on S3 and distributed globally via Amazon CloudFront for low-latency access.
- Global Scalability: Uses CloudFront edge locations for fast content delivery.
- Secure Access: Configures S3 bucket policies to allow access only via CloudFront (OAC/OAI).
- Cost-Effective: Serverless hosting with no management overhead.
flowchart LR
User((User)) -->|HTTPS| CF["CloudFront Distribution"]
CF -->|Fetch| S3["S3 Static Bucket"]
.
├── index.html # Sample static website content
├── screenshots/ # AWS console configuration visuals
└── README.md # Project documentation
- Storage: Amazon S3
- CDN: Amazon CloudFront
- Security: OAC (Origin Access Control)
Enable static website hosting.

Configure the distribution and restrict bucket access.

Access the site via the CloudFront domain.

