Ask HN: What is the cheapest way to make a website?
11–20 of 99 posts
Re: Ask HN: What is the cheapest way to make a website?
#12* Corrected mistake, was 10GB
Re: Ask HN: What is the cheapest way to make a website?
#13It's all also free unless you want more features, and you can easily take it and host elsewhere (like S3).
Re: Ask HN: What is the cheapest way to make a website?
#14GitHub pages / GitLab pages. I prefer the latter since the CI for pages is less magical and more flexible as a result - you aren't limited to what they support, and they don't claim a 100GB* traffic limit (just fair use). Couple with a cheap .com and free Cloudflare for DNS and caching. * Corrected mistake, was 10GB
stages:
- deploy
- clear-cache
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master
clear-cache:
stage: clear-cache
script:
- curl -X DELETE "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/purge_cache" -H "X-Auth-Key:$CF_AUTH_KEY" -H "X-Auth-Email:$CF_AUTH_EMAIL" -H "Content-Type:application/json" --data '{"purge_everything":true}'
only:
- masterRe: Ask HN: What is the cheapest way to make a website?
#15Re: Ask HN: What is the cheapest way to make a website?
#16Re: Ask HN: What is the cheapest way to make a website?
#17GitHub pages / GitLab pages. I prefer the latter since the CI for pages is less magical and more flexible as a result - you aren't limited to what they support, and they don't claim a 100GB* traffic limit (just fair use). Couple with a cheap .com and free Cloudflare for DNS and caching. * Corrected mistake, was 10GB
Re: Ask HN: What is the cheapest way to make a website?
#18Re: Ask HN: What is the cheapest way to make a website?
#19Re: Ask HN: What is the cheapest way to make a website?
#20There's also NearlyFreeSpeech[^1] which is very cheap and very free speech oriented.