Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
111–120 of 171 posts
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#112Earlier quoted context omitted.
How is there vendor lock-in for static websites, though? Can't you just take your files and go somewhere else?
Yep, you certainly can, which is part of their the beauty. Last I looked, though, you couldn't deploy to S3 without using tools that work specifically with it. I guess it's really not that big a deal, but I prefer the genericness of "I'm configuring a webserver and pushing my files to it." That process can be just about fully automated, even including HTTPS setup if you want that, and then you can use with whatever s…
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#113How much should this cost per month in AWS billing for a small static website?
I didn't run analytics so I can't say how many hits it got, but traffic was probably fairly average for a personal site.
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#114Am I the only one who still hosts my own static sites on a plain old virtual machine? It's pretty simple to configure nginx for static sites, and by doing it yourself you reduce vendor lockin to just about nil. Even if S3 is massively cheaper, $5/month for a tiny VM seems like a small price to pay for being vendor-abstract. I suppose S3 is way less likely to suffer a meaningful outage than my little VM, but how many…
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#115GitHub pages [0] gives you static sites with HTTPS and a custom domain without nearly as much complexity as this if you're looking for an alternative to Netlify. [0] https://pages.github.com/
Github pages requires a paid account. https://help.github.com/en/articles/githubs-products#github-...
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#116GitHub pages [0] gives you static sites with HTTPS and a custom domain without nearly as much complexity as this if you're looking for an alternative to Netlify. [0] https://pages.github.com/
I feel like Netlify has set the standard in this area now so I'm curious to learn what's different when I see these projects mentioned here.
(Note: that info is from anecdotally looking at Netlify site IPs, I could be wrong)
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#117Looks very similar to my project https://github.com/kkuchta/scarr from a while back. It even uses the same acronym (I assume that's just a coincidence, since we both just picked a cool-sounding english-language word using the initials from S3, Cloudfront, ACM, and ACM. At a glance: - Mine handles domain registration + ACM verification automatically - This one wisely uses clioudformation instead of api calls - This on…
I also started off in the same manner of implementation - bash scripts wrapping AWS CLI calls - then stumbled upon the more straightforward, template based approach.
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#118How much should this cost per month in AWS billing for a small static website?
- S3 costs: $0.10/month
- Route53: $0.50/month ($0.50 per hosted zone)
S3 costs could be lower - I have other buckets with stuff that count towards my cost.
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#119Looks very similar to my project https://github.com/kkuchta/scarr from a while back. It even uses the same acronym (I assume that's just a coincidence, since we both just picked a cool-sounding english-language word using the initials from S3, Cloudfront, ACM, and ACM. At a glance: - Mine handles domain registration + ACM verification automatically - This one wisely uses clioudformation instead of api calls - This on…
Wow, that is a fun coincidence! Indeed, I was going for a catchy four-letter acronym in the same vein as popular stacks like LAMP or MEAN. Perhaps the fact that we both landed on the same components and permutation of components means that there's something there :) I also started off in the same manner of implementation - bash scripts wrapping AWS CLI calls - then stumbled upon the more straightforward, template bas…
Re: Show HN: Scar – Static websites with HTTPS, a global CDN, and custom domains
#120Earlier quoted context omitted.
I feel like Netlify has set the standard in this area now so I'm curious to learn what's different when I see these projects mentioned here.
I had honestly never heard of Netlify. I thought GitHub Pages was the standard, with S3 static hosting a second (more involved) option. EDIT: Googling suggests Netlify offers a build, deploy, hosting pipeline all-in-one box. Which is substantially more than any of the projects mentioned here. These serve a single purpose - simple hosting of static websites.