Junior — Middle
How can a basic static page be deployed on AWS infrastructure?
sobes.tech AI
Answer from AI
To deploy a basic static webpage on AWS, you can use Amazon S3 and Amazon CloudFront:
- Create an S3 bucket and upload your static website files (HTML, CSS, JS).
- Enable "Static website hosting" in bucket settings and specify the index document (e.g., index.html).
- Set access permissions to make files publicly accessible (via bucket policy).
- For better performance and security, configure Amazon CloudFront — a CDN that caches and delivers content closer to users.
This way, you get a highly available and scalable static website hosting without managing servers.