Earlier quoted context omitted.
Anyone who refers to people as "mayonnaise" and "curry" are racist themselves.
Won’t someone please think of the white people
Ask HN: Cheapest/easiest way to host a static site?
401–410 of 507 posts
Re: Ask HN: Cheapest/easiest way to host a static site?
#402Re: Ask HN: Cheapest/easiest way to host a static site?
#403I’ll second the use of GitLab pages - free hosting, free letsencrypt cert, only pay for your domain, very easy setup. Here’s my setup with Zola: https://seanharrison.org/postgrails/20200523-got-zola/ A couple notes about setting up DNS since the gitlab instructions weren’t 100% clear to me: https://seanharrison.org/postgrails/20200720-gitlab-pages-dn...
Re: Ask HN: Cheapest/easiest way to host a static site?
#404Earlier quoted context omitted.
That's a great point. I actually looked at GitHub pages and my main issue with it is there's no way to password lock the site. I don't need serious security here, but I also don't exactly want the entire world to see my HTML playground. I'm not sure why they're doing it this way, it should be a nominal task to restrict viewers to those with read access to your repo, but I think it underscores the use cases they have…
> it should be a nominal task to restrict viewers to those with read access to your repo I don't think it would be quite that trivial. They would have to inject authentication into your HTML, which could cause lots of things to break.
Re: Ask HN: Cheapest/easiest way to host a static site?
#405Hosting a personal blog on old / cheap hardware at home and accepting some downtime now and then should be a trade-of worth making for most. An interconnected web of documents served from personal computers residing under a desk or in a basement – it is a beautiful thing. We nerds often seem to fall into the trap of over-engineering things, like, spending a lot of time building personal stuff that can scale into the…
Put the free Cloudflare proxy in front just to speed it up a little.
Re: Ask HN: Cheapest/easiest way to host a static site?
#406£4.99 for basic account
£9.99 unlimited subsite account (my choice)
No need to run daemons or maintain packages or configure backups
You can configure ssh access to put files
To deploy I use lftp which takes ftp commands from stdin and can do a recursive mput very similar to rsync
so I run my hand built deploy.pl which calls a subscript like this
time ./scripts/push_to_cdn.pl | lftpRe: Ask HN: Cheapest/easiest way to host a static site?
#407Earlier quoted context omitted.
That blog post was why I decided to not use them too. Specifically their line about > "and we have no interest in living in a sea of mayonnaise." What is that even supposed to mean?? Who refers to people as "mayonnaise"?? While claiming to be against racism??
I read it as a succinct and derisive dismissal of white supremacist beliefs, particularly racial purity.
Not to be confused with the antiracist belief that people shouldn't date outside their race bacause... it's colonialism?
Re: Ask HN: Cheapest/easiest way to host a static site?
#408Re: Ask HN: Cheapest/easiest way to host a static site?
#409Basic FTP hosting starts from $10 per YEAR so it can be considered cheap as well - just create an subaccount that after login will be in the your page destination so it will be blazing fast to use with w.g. FTPzilla and just drag and drop your files each time you want to update.
Re: Ask HN: Cheapest/easiest way to host a static site?
#410If you go with Jekyll, it's really nice to work with. I decided to go with GHP over hosting myself in case I ever get super famous, which will most likely never happen.
Ultimately, its easy enough that you can get writing right away. If you decide that the software isn't enough, it'll be a breeze to move somewhere else since its all markdown.