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…
Ask HN: What free or low-cost static site hosting do you use most?
81–90 of 229 posts
Re: Ask HN: What free or low-cost static site hosting do you use most?
#82I 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…
It's worth noting that SSL only works between the browser and Cloudfront servers. Last time I checked there wasn't an option to use SSL with s3. It's not a deal breaker, but it was enough to make me look for alternatives.
Re: Ask HN: What free or low-cost static site hosting do you use most?
#83Re: Ask HN: What free or low-cost static site hosting do you use most?
#84I use Github to host the source for my blog/website which is open source. Jekyll for the building which happens on Travis CI. Deployment on S3 with cloudflare as a CDN for SSL and reduced bandwidth. I really like this setup. I wrote a guide called The One Cent Blog[0] a while back detailing how it's setup. Typical months the cost is around $0.01-$0.03. Becuase people usually ask why S3 over Github pages I'll answer i…
Nice thing for S3 though is you could cloudfront it if you wanted to for some reason. And it's in your control.
Re: Ask HN: What free or low-cost static site hosting do you use most?
#85NearlyFreeSpeech - fantastic business, incredibly cheap. My domain costs are more than my hosting costs (I pay roughly $2.50 a month for hosting a forum).
The main reason I left is that I wanted to use HTTPS, but I didn't want to have to purchase a certificate when there are many good free options available now. NearlyFreeSpeech requires opening a ticket with customer support to update certificates, so using Lets Encrypt isn't really an option there. Amazon offers free certificates for Cloudfront.
In addition to gaining HTTPS support for free, my hosting costs went from a couple bucks a month to less than 50 cents a month.
Re: Ask HN: What free or low-cost static site hosting do you use most?
#86I use Github to host the source for my blog/website which is open source. Jekyll for the building which happens on Travis CI. Deployment on S3 with cloudflare as a CDN for SSL and reduced bandwidth. I really like this setup. I wrote a guide called The One Cent Blog[0] a while back detailing how it's setup. Typical months the cost is around $0.01-$0.03. Becuase people usually ask why S3 over Github pages I'll answer i…
Here's the workflow I currently use if the OP wants something with less moving parts. I just use s3_website from the command line. It will even create the s3/cloudfront configuration completely automatically.
gem install s3_website
; set up s3_website.yml and AWS environment variables
s3_website cfg apply ; this creates and configures the S3 bucket and cloudfront configuration
s3_website push ; push to S3, invalidate cloudfront cachesRe: Ask HN: What free or low-cost static site hosting do you use most?
#87Re: Ask HN: What free or low-cost static site hosting do you use most?
#88Earlier quoted context omitted.
It's worth noting that SSL only works between the browser and Cloudfront servers. Last time I checked there wasn't an option to use SSL with s3. It's not a deal breaker, but it was enough to make me look for alternatives.
If I understand what you're saying, if the origin for your Cloudfront distribution is an S3 bucket, the link between S3 and Cloudfront is unencrypted? That seems unimaginable to me.
Re: Ask HN: What free or low-cost static site hosting do you use most?
#89An extra $1.45/month gets you PHP and CGI hosting, plus raised quotas.
My only caveats: The free hosting tier only gets you 10MB of space per domain (no bandwidth quotas, though!) Which has been plenty for me for everything except large photo galleries, but YMMV. Also, I've had terrible experience with their domain backordering service--the domain I backordered was quietly released and became publicly available without a peep from R4L.
Their actual domain hosting, website hosting, and technical support has been stellar, though. (Websites are actually hosted on a shared server somewhere at OVH, if Ican trust the reverse DNS info.)
Re: Ask HN: What free or low-cost static site hosting do you use most?
#90I 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.