Live data from Hacker News

Ask HN: What free or low-cost static site hosting do you use most?

news.ycombinator.com

51–60 of 229 posts

Re: Ask HN: What free or low-cost static site hosting do you use most?

#51

I have a soft spot for Neocities, which is trying to be everything we loved about Geocities, but for a modern age: https://neocities.org/ ZERO ADVERTISEMENTS , even for the free plan. Supports only static hosting, is free for 100mb websites with bandwidth of 50GB per month, or five dollars per month for 10,000mb with 2TB and a number of other extra features. EDIT: As mentioned by detaro, custom domain only supported…

I can't find if neocities support custom domain names, any idea?

Re: Ask HN: What free or low-cost static site hosting do you use most?

#53
I am on scaleway bare metal at 3.6€ per month. I use no-ip.com for the free domain name. I have a docker image to update a jekyll static site that I publish over ssh with rsync. I use fgallery for the pictures collections. For me, it is the easiest solution because I am familiar with the OS and it uses only standard tools that will never change and no fancy and broken website interface.

It is cheap enough to not bother with the limitations of most low-cost static site hosting.

Re: Ask HN: What free or low-cost static site hosting do you use most?

#54
post #51

I have a soft spot for Neocities, which is trying to be everything we loved about Geocities, but for a modern age: https://neocities.org/ ZERO ADVERTISEMENTS , even for the free plan. Supports only static hosting, is free for 100mb websites with bandwidth of 50GB per month, or five dollars per month for 10,000mb with 2TB and a number of other extra features. EDIT: As mentioned by detaro, custom domain only supported…

I can't find if neocities support custom domain names, any idea?

in the paid plan: https://neocities.org/supporter

Re: Ask HN: What free or low-cost static site hosting do you use most?

#56
Just to echo... Amazon S3 with CloudFront. No contest. CloudFront has free SSL too. Then AWS Lambda to provide dynamic content via Javascript / API if needed.

If you want to get fancy you can even attach it to your domain root (example.com vs www.example.com) using Route53. Which is impossible with many static hosts. Although that requires a hosted Route53 zone which at $2 might very well be 100x your hosting costs.

I use Jenkins to generate the website itself.

Edit: Only downside is if your traffic spikes you have no control over the cost. There is no upper bounds. With that said, it would take a tremendous amount of traffic to balloon the costs to anything worth worrying about. And at least you can be sure your website will actually stay up.

Re: Ask HN: What free or low-cost static site hosting do you use most?

#57

I have a soft spot for Neocities, which is trying to be everything we loved about Geocities, but for a modern age: https://neocities.org/ ZERO ADVERTISEMENTS , even for the free plan. Supports only static hosting, is free for 100mb websites with bandwidth of 50GB per month, or five dollars per month for 10,000mb with 2TB and a number of other extra features. EDIT: As mentioned by detaro, custom domain only supported…

I loved geocities too, and I always wished I"d had a CORS backend to call from my HTML pages. I built a service specifically to be a CORS backend for neocities. You can signup, and start making CORS calls from your neocities pages to a sqlite database on my service. I tried several times to contact the owner of neocities about this but he never responded. Since then I implemented static file hosting and pivoted to a "Single Page App One Stop Shop" model. We offer custom domains and free ssl (Lets Encrypt) for early adopters. Link in my profile.

Re: Ask HN: What free or low-cost static site hosting do you use most?

#58
post #17

I use AWS S3, which I put behind a Cloudfront distribution. It's quick to set up, and there are no servers to keep up to date and patched. You also get free SSL for your Cloudfront distribution via AWS certificate manager. For stuff like Contact Us forms, I use AWS Lambda to post the data into my company's CMS. We've had this setup for about a year now and it works quite well. The cost is almost nothing but we don't…

A quick note on the S3/Cloudfront option - make sure you enable "Compress Objects Automatically"; it's not enabled by default and wasn't provided for a long time.

https://aws.amazon.com/blogs/aws/new-gzip-compression-suppor...

You'll save a lot on your bandwidth bill.

Re: Ask HN: What free or low-cost static site hosting do you use most?

#59
post #17

I use AWS S3, which I put behind a Cloudfront distribution. It's quick to set up, and there are no servers to keep up to date and patched. You also get free SSL for your Cloudfront distribution via AWS certificate manager. For stuff like Contact Us forms, I use AWS Lambda to post the data into my company's CMS. We've had this setup for about a year now and it works quite well. The cost is almost nothing but we don't…

[deleted]

Re: Ask HN: What free or low-cost static site hosting do you use most?

#60

I think I'd go with DigitalOcean $5/mo, nginx, a static site generator (there's so many), and LetsEncrypt (for SSL).

I'm with you on this one. Given the choice between configuring nginx and navigating AWS/Wordpress' arcane configuration GUIs, I'll go with nginx every day.
Post reply on HN