Regarding some cost free solutions mentioned here: how does the saying 'if it is free, then you are the product' hold up?
Ask HN: Cheapest/easiest way to host a static site?
51–60 of 507 posts
Re: Ask HN: Cheapest/easiest way to host a static site?
#52I use https://nearlyfreespeech.net for my static site. It isn't free -- it is pretty cheap -- but it has a lot going for it. It requires no custom tooling -- I upload via rsync. This makes it trivial to migrate to a new provider if necessary. I develop my site locally, then rsync it up. I have a custom domain pointed at the site, and also a custom .htaccess, so I have a good amount of control over the site. I do thin…
Re: Ask HN: Cheapest/easiest way to host a static site?
#53Re: Ask HN: Cheapest/easiest way to host a static site?
#54Regarding some cost free solutions mentioned here: how does the saying 'if it is free, then you are the product' hold up?
Re: Ask HN: Cheapest/easiest way to host a static site?
#55Re: Ask HN: Cheapest/easiest way to host a static site?
#56Re: Ask HN: Cheapest/easiest way to host a static site?
#57Google App Engine has a very generous free quota. The setup isn't as easy as good old FTP, because you need to define your static files in a configuration file. Once the config is written the deployment is a single command though. https://cloud.google.com/appengine
Re: Ask HN: Cheapest/easiest way to host a static site?
#58I have my site in an S3 bucket with the static-site flag activated. It would not win for 'easiest'. However, it's the only thing in my personal AWS account right now and my monthly bill is $0.83
Re: Ask HN: Cheapest/easiest way to host a static site?
#59I have switched to BunnyCDN [1] a while back, also very happy with it. Pricing is extremely cheap, and has the added benefit of being able to cache anything dynamic you might add in the future.
[1]: https://bunny.net/
Re: Ask HN: Cheapest/easiest way to host a static site?
#60> jumping through AWS hoops I found S3 static hosting to be fairly straightforward. Once set up, a single `aws s3 sync . s3://my-bucket/path` updates the content.
Agreed! It's super easy