Show HN: Simple CDN backed static website in AWS
1–10 of 12 posts
Re: Show HN: Simple CDN backed static website in AWS
#2Re: Show HN: Simple CDN backed static website in AWS
#3What's novel about this? And why use it over any of the more polished/simplified offerings like netlify?
Re: Show HN: Simple CDN backed static website in AWS
#4Re: Show HN: Simple CDN backed static website in AWS
#5Is there any advantage to this over something like cloudflare pages?
In terms of advantages, I'd say price, and the maturity of using AWS. I deploy a static site with a GitHub Action (look at my other repo whisky-menu for how to do this) which builds a React app, copies it to S3, and invalidates the CloudFront cache.
Re: Show HN: Simple CDN backed static website in AWS
#6What's novel about this? And why use it over any of the more polished/simplified offerings like netlify?
In terms of pricing, you can store 1GB in S3 for a year for a fraction of a dollar. The majority of the cost comes from CloudFront. Unless you have serious traffic, this is extremely cheap:
https://aws.amazon.com/cloudfront/pricing/
The interface (just put files in S3) suits me. I have a site where I deploy and invalidate the CloudFront cache in a GitHub Action: https://github.com/lifebeyondfife/whisky-menu/blob/master/.g...
Re: Show HN: Simple CDN backed static website in AWS
#7Re: Show HN: Simple CDN backed static website in AWS
#8Is there any advantage to this over something like cloudflare pages?
Cloudflare Pages looks like a more productionised version of this, yes. In terms of advantages, I'd say price, and the maturity of using AWS. I deploy a static site with a GitHub Action (look at my other repo whisky-menu for how to do this) which builds a React app, copies it to S3, and invalidates the CloudFront cache.
Re: Show HN: Simple CDN backed static website in AWS
#9Why not use Amplify Console for hosting with a CDN?
AWS is all about abstractions. Some of them are worth learning but increasingly there's a wall of options in AWS and, for me, it's not worth spending time staying on top of all of them. The few services needed for this setup are some of the most popular and will be there in the future.
Re: Show HN: Simple CDN backed static website in AWS
#10Earlier quoted context omitted.
Cloudflare Pages looks like a more productionised version of this, yes. In terms of advantages, I'd say price, and the maturity of using AWS. I deploy a static site with a GitHub Action (look at my other repo whisky-menu for how to do this) which builds a React app, copies it to S3, and invalidates the CloudFront cache.
Price?... Cloudflare is completely Free, so surely it beats AWS on cost?
Because I have other resources and projects in AWS I'll keep this setup. It's so close to free that cost doesn't bother me.