47 votes

What webhost and software do you use for your personal website?

In the 2000s, I had Blogger or a subdomain on some random free host. I even tried Ning at some point.

Since 2012, I’ve had a personal site at a custom domain, on Squarespace, then WordPress who knows where, then Tumblr, then WordPress on Linode, now a combo Bear Blog and GitHub Pages.

I dislike WordPress for how clunky it is, Squarespace for how expensive it is, Tumblr for how obviously Tumblr it is (I could say the same about Squarespace and many WordPress sites), GitHub Pages for making me use git to post. Basically, I’m not happy with anything.

So I thought I’d ask los Tildeños—do you have a personal site? What web host and tech stack are you using for it? What do you like/dislike about it? What else have you tried?

56 comments

  1. [9]
    earlsweatshirt
    Link
    I use Github Pages. Nothing beats free. It helps that it’s a static portfolio, not a blog, so updates are fairly infrequent. Way back when I used 000webhost or some other free host (can’t quite...

    I use Github Pages. Nothing beats free. It helps that it’s a static portfolio, not a blog, so updates are fairly infrequent.

    Way back when I used 000webhost or some other free host (can’t quite remember the name.) I learned my lesson when it all got deleted 😄 At least if Github decides to stop making it free I’m pretty sure there will be enough heads up to save the content.

    20 votes
    1. [6]
      Stopher87
      Link Parent
      I combine this with CloudFront and and Route53 so I can get a domain name. I pay $0.50 a month for it and it's available around the world. No one goes there but it makes me happy.

      I combine this with CloudFront and and Route53 so I can get a domain name. I pay $0.50 a month for it and it's available around the world. No one goes there but it makes me happy.

      3 votes
      1. jackson
        Link Parent
        You can attach a domain name directly to github pages for free now! (aside from the cost of the domain of course)

        You can attach a domain name directly to github pages for free now! (aside from the cost of the domain of course)

        12 votes
      2. [4]
        earlsweatshirt
        Link Parent
        I just pay $10/yr or something for my domain through Google Domains.

        I just pay $10/yr or something for my domain through Google Domains.

        1 vote
        1. [3]
          the_eon
          Link Parent
          Soon to be squarespace domains, sadly...

          Soon to be squarespace domains, sadly...

          2 votes
          1. [2]
            earlsweatshirt
            Link Parent
            Damn, first I’m hearing about that. That blows :/

            Damn, first I’m hearing about that. That blows :/

            1. the_eon
              Link Parent
              Yeah. I liked how simple and inexpensive Google Domains was, but they don't like that it's not hyper profitable. They probably were hoping that it would significantly drive up other integrations,...

              Yeah. I liked how simple and inexpensive Google Domains was, but they don't like that it's not hyper profitable. They probably were hoping that it would significantly drive up other integrations, like with Google Workspace (for Gmail with custom domains) and such, but it didn't so I guess they are deciding to cut it loose.

    2. [2]
      jdsalaro
      Link Parent
      Same, but different since I use GitLab Pages. Nothing beats free and open source 😉

      Same, but different since I use GitLab Pages.

      Nothing beats free and open source 😉

      2 votes
      1. earlsweatshirt
        Link Parent
        I’ve been mentally stuck on Github for ages (First movers advantage really works !) but I really should check out Gitlab one of these days.

        I’ve been mentally stuck on Github for ages (First movers advantage really works !) but I really should check out Gitlab one of these days.

        1 vote
  2. Pavouk106
    Link
    I host my website myself, I have public IP and 24/7 running PC. I wrote my website (blog) myself. Maybe those are the reasons it doesn't work at all at the moment.

    I host my website myself, I have public IP and 24/7 running PC. I wrote my website (blog) myself.

    Maybe those are the reasons it doesn't work at all at the moment.

    20 votes
  3. [4]
    Diff
    Link
    I myself use nearlyfreespeech.net to host, it's pretty cheap managed hosting. Just dump your files in over SSH and away you go. Software-wise, I'm just very foolishly writing all my HTML and CSS...

    I myself use nearlyfreespeech.net to host, it's pretty cheap managed hosting. Just dump your files in over SSH and away you go. Software-wise, I'm just very foolishly writing all my HTML and CSS myself and regretting every moment of it.

    13 votes
    1. asciipip
      Link Parent
      I love nearlyfreespeech.net! They're a little expensive for storage (so I throw larger files in S3), but basic hosting and bandwidth is super cheap. My current site is static pages generated with...

      I love nearlyfreespeech.net! They're a little expensive for storage (so I throw larger files in S3), but basic hosting and bandwidth is super cheap.

      My current site is static pages generated with Hugo from a completely handwritten template. So I could probably do static hosting with S3 or even GitHub pages, but I like the flexibility NFSN gives. Plus I've got a few subsections that run off slightly more dynamic CGI.

      I'm just very foolishly writing all my HTML and CSS myself and regretting every moment of it.

      It's great practice. Plus there's the feeling of accomplishment from looking at your site and knowing you built it from the ground up.

      5 votes
    2. dave1234
      Link Parent
      I'm a big fan of Nearly Free Speech. My personal website costs less than $10 USD/yr. It's not free—but it's pretty damn close! Nowadays you can also deploy and run your own server software if you...

      I'm a big fan of Nearly Free Speech. My personal website costs less than $10 USD/yr. It's not free—but it's pretty damn close!

      Nowadays you can also deploy and run your own server software if you wish. If you'd rather build your own web server with Go or Node.js, you can! MySQL databases are also available.

      4 votes
    3. earlsweatshirt
      Link Parent
      Ain’t no other way to do it 😄 (Maybe a sprinkle of JS… ;))

      Software-wise, I'm just very foolishly writing all my HTML and CSS myself and regretting every moment of it.

      Ain’t no other way to do it 😄 (Maybe a sprinkle of JS… ;))

      3 votes
  4. [4]
    jmp
    Link
    Mine is statically generated website that I host on Netlify. I use Zola to generate the website. The site “source code” is written in Markdown with some templates and style sheets written HTML and...

    Mine is statically generated website that I host on Netlify.

    I use Zola to generate the website. The site “source code” is written in Markdown with some templates and style sheets written HTML and SCSS. The source sits in a GitHub repository.

    I’ve connected the repository to Netlify, so whenever there’s a new commit, Netlify automatically picks it up, runs zola build and deploys the output.

    Until a few days ago, I was using my own static site generator written in Python. It was tiny (<100 SLOC) and worked fine for many years. But it had some quirks and didn’t have support for many features found in other static site generators. So I decided to migrate to a ready-made solution. Fortunately Zola was almost a drop-in replacement.

    12 votes
    1. mjb
      Link Parent
      I've been using Zola on GitLab Pages with its CI/CD runner for a couple of years now. Having retired from software development, I no longer needed my Linode VPS where I had hosted a WP instance...

      I've been using Zola on GitLab Pages with its CI/CD runner for a couple of years now. Having retired from software development, I no longer needed my Linode VPS where I had hosted a WP instance for several years. I love the simplicity of a static site generator.

      2 votes
    2. xysimus
      Link Parent
      Thanks for sharing - Zola looks great! I've been using Hugo, but never loved the Golang template engine. Using something similar to Jinja would be a dream in comparison.

      Thanks for sharing - Zola looks great! I've been using Hugo, but never loved the Golang template engine. Using something similar to Jinja would be a dream in comparison.

      1 vote
    3. aphoenix
      (edited )
      Link Parent
      Hey I love Zola. I use it for my personal site and have built several sites for clients with it too. Great tool!

      Hey I love Zola. I use it for my personal site and have built several sites for clients with it too. Great tool!

  5. [2]
    0xSim
    Link
    I have the cheapest Hetzner VPS, with nginx to serve (or act as a reverse proxy) the few personal sites/services I host. I use that as a playground. My "main site" is a Vue 3 app, and my blog is...

    I have the cheapest Hetzner VPS, with nginx to serve (or act as a reverse proxy) the few personal sites/services I host. I use that as a playground.
    My "main site" is a Vue 3 app, and my blog is built from Sveltekit.

    7 votes
    1. xysimus
      Link Parent
      I also use a few Hetzner VPSes. They're the best deal for a VPS I've found and have been rock solid in the past couple of years I've been using them.

      I also use a few Hetzner VPSes. They're the best deal for a VPS I've found and have been rock solid in the past couple of years I've been using them.

      1 vote
  6. feanne
    Link
    I use hostinger for my webhost and happy with it so far! It's inexpensive and straightforward. I'm using a very basic PHP CMS that I built for myself. No database, no admin, just flatfile. It...

    I use hostinger for my webhost and happy with it so far! It's inexpensive and straightforward.

    I'm using a very basic PHP CMS that I built for myself. No database, no admin, just flatfile. It basically lets me create "gallery pages" on my website by just creating folders and dumping images in the folders. The web design is just HTML and CSS and I update via FTP. I write garbage code but it works, and I can leave the site structure alone for years without updating it and nothing breaks.

    For my other website I used Airtable as the backend/content and then softr.io as the frontend. (Just free accounts on both since I'm not a heavy user.) It works well if you just need a nice way to display your Airtable content.

    6 votes
  7. Macil
    (edited )
    Link
    I'm using DigitalOcean for my personal site right now, which has been acceptable for basic plain servers and kubernetes, but lately I've been using Vercel for some toy projects and I'm liking it a...

    I'm using DigitalOcean for my personal site right now, which has been acceptable for basic plain servers and kubernetes, but lately I've been using Vercel for some toy projects and I'm liking it a lot. It has GitHub integration so you can push to deploy new changes, it will deploy other branches to test URLs so you can try them out live, it can run build steps, you can use a custom domain with it, and it has a free tier. Vercel also happens to make the great Next.js framework which I've been using with it.

    6 votes
  8. llb
    Link
    I purchase and manage my domains and manage DNS through Porkbun I use Vercel to host my projects, which are a mixture of static websites, 11ty, and nextjs. I've chosen them because their free tier...

    I purchase and manage my domains and manage DNS through Porkbun

    I use Vercel to host my projects, which are a mixture of static websites, 11ty, and nextjs. I've chosen them because their free tier is generous, and they make integration and CD extremely easy. This also automates using certbot and getting SSL setup.

    The code for my websites is on github, and uses vercels CD to automatically deploy when I push changes.

    My personal site is at https://llblumire.co.uk

    I'm currently decomissioning the last of my nginx sites which are on a digitalocean server, and migrating fully over to the setup above. I've eliminated basically all of my costs (just paying for domains on most sites now)

    5 votes
  9. lux
    (edited )
    Link
    I have a somewhat private server. I mostly use it to host game servers for friends or to run tests that run for a longer while. I do host my friends band page on it, that I wrote for them. This...

    I have a somewhat private server. I mostly use it to host game servers for friends or to run tests that run for a longer while. I do host my friends band page on it, that I wrote for them. This should be the only public facing site.

    Its just a static html/css page, it doesnt need to do much and its instantly opened. As I dislike trackers, there is no need for a cookie banner which is sadly a rare sight these days.

    For this reason, its just a domain pointing to an ovh vps. Its very barebones and only contains the newest kernel+http proxy+docker+fail2ban and similar safeguards. That makes it very easy to configure and to keep slim.

    I used to use Ghost as a blog for a few clients(self hosted), and they were usually happy with it. This was four-five years ago, so I dont know how well you can extend it like Wordpress today, but I usually got good feedback for its minimalistic approach and fast loading times.

    The more boring this vps is, the better. I dont really enjoy it very much nowadays and I am happy when everything runs as it should.

    4 votes
  10. [2]
    jaxoff
    Link
    I'm definitely not as technical as everyone else here, but I use WordPress. It's easy enough for me to use, flexible enough for my use case, and cheaper than Squarespace. My site is a static...

    I'm definitely not as technical as everyone else here, but I use WordPress. It's easy enough for me to use, flexible enough for my use case, and cheaper than Squarespace. My site is a static portfolio. I host on Namecheap's shared hosting plan for $45/year and it works for me because I don't get much traffic.

    If you're not a fan of WordPress I still recommend Namecheap as a host cause it's so cheap.

    4 votes
    1. piedpiper
      Link Parent
      I went with namecheap for a small wordpress project a few months ago (also low traffic), and I've been really happy with it so far.

      I went with namecheap for a small wordpress project a few months ago (also low traffic), and I've been really happy with it so far.

      1 vote
  11. unkz
    Link
    I’ve tried everything but nowadays I use Django/Wagtail for anything like that.

    I’ve tried everything but nowadays I use Django/Wagtail for anything like that.

    3 votes
  12. Light_of_Aether
    Link
    I use the hatchling plan at HostGator and I coded my personal website based on a W3.CSS template. It works pretty well for me. It's pretty much a static website that I update every now and again....

    I use the hatchling plan at HostGator and I coded my personal website based on a W3.CSS template. It works pretty well for me. It's pretty much a static website that I update every now and again. I also have a blog with Github Pages that uses Jekyll. That works okay, but theming is very bare because I haven't taken the time to figure it out.

    3 votes
  13. Akir
    Link
    I use handwritten HTML on S3. Mainly because I haven’t bothered to update it in forever.

    I use handwritten HTML on S3. Mainly because I haven’t bothered to update it in forever.

    3 votes
  14. pyeri
    Link
    I host mine on github pages and use pelican static generator to churn out the pages. Thinking of switching back to jekyll as github natively supports it.

    I host mine on github pages and use pelican static generator to churn out the pages. Thinking of switching back to jekyll as github natively supports it.

    2 votes
  15. [2]
    Comment deleted by author
    Link
    1. guissmo
      Link Parent
      Hi. I’m using a similar setup as you but I’m not aware of the security risks. Could you please elaborate?

      Hi. I’m using a similar setup as you but I’m not aware of the security risks. Could you please elaborate?

  16. [2]
    moistfeet
    Link
    I run all my websites in an AWS EC2 instance running debian and nginx. It's way too expensive for what it is, but at least I get to have some hands on experience with AWS. I also have some smaller...

    I run all my websites in an AWS EC2 instance running debian and nginx. It's way too expensive for what it is, but at least I get to have some hands on experience with AWS. I also have some smaller projects running on netlify and vercel, but I don't think I would run anything important off them.

    Thankfully, nobody uses any of my websites, but I'm not looking forward to making a real website that people would actually use. Server and storage costs add up really fast, it's like death by paper cuts. I really have no idea how the big websites are able to pull it off.

    2 votes
    1. devilized
      Link Parent
      AWS gives pretty sizable sustained use discounts when you commit to 1-3 years , so large websites are paying less per unit of compute than you are. Many might also be using serverless...

      AWS gives pretty sizable sustained use discounts when you commit to 1-3 years , so large websites are paying less per unit of compute than you are. Many might also be using serverless technologies, or stuff like containers which scale easily. Our company is very much into containerization, and the cloud providers have Kubernetes offerings that make it really easy.

      5 votes
  17. Matsimitsu
    Link
    I use Bridgetown to generate a static site, powered by CMS that runs on my home server. The idea is to have as many inputs as possible to increase the chance to actually write something :P. For...

    I use Bridgetown to generate a static site, powered by CMS that runs on my home server. The idea is to have as many inputs as possible to increase the chance to actually write something :P.

    For example I have a telegram integration, so I can write a quick post (notes) of things I come across when browsing, or upload a photo from my phone and post it right away.

    The CMS triggers a Netlify build, and Bridgetown consumes the API to generate the pages.

    I'm in the process to dumb this all down to just a single (Rust) binary that renders dynamic pages like it's 1999. I'll run that from my home, and maybe front it with a CDN such as Bunny.net.

    The reason for the custom CMS is that I blog about my travels and they contain a lot of photos' (think 10.000+), and most static site generators can't handle that amount, most of them try to optimise images when building, which takes ages. The CMS resizes the photos and uploads them to a CDN and since I need that anyway, it's not a lot more effort to have it store the text content too.

    2 votes
  18. Cerulean
    Link
    I have a cheap vps on ssdnodes that I just throw everything on. Use it for whatever projects I'm working on at the time. if I want to update any sites on it, I just scp my local copy of the site...

    I have a cheap vps on ssdnodes that I just throw everything on. Use it for whatever projects I'm working on at the time. if I want to update any sites on it, I just scp my local copy of the site to the relevant folder. It's no more than a meg or two of text an images, so it isn't worth doing anything more complex than that.

    2 votes
  19. kogasa
    Link
    I self-host on my home server/NAS behind a reverse-proxy to a Google Cloud load balancer. I use Elixir/Phoenix (which I really recommend!) and have the whole thing dockerized, including database...

    I self-host on my home server/NAS behind a reverse-proxy to a Google Cloud load balancer. I use Elixir/Phoenix (which I really recommend!) and have the whole thing dockerized, including database migrations, so I can easily deploy it. The NAS runs UnRaid, but anything capable of running Docker Compose (and I self-hostmessing with ports) would work.

    edit: Using Google Cloud Domains for my domain registrar, although that'll change over to CloudFlare next year due to the recent acquisition.

    2 votes
  20. 0x29A
    Link
    I went from a static html/css on Netlify -> Bear Blog with a custom domain I just got tired of editing html/css to create. I've tried all sorts of other blogging platforms and tools, and shared...

    I went from a static html/css on Netlify -> Bear Blog with a custom domain

    I just got tired of editing html/css to create. I've tried all sorts of other blogging platforms and tools, and shared webhosting, static site generators, etc and just none of it ever really "fit" me right

    I wanted a system that would be extremely minimal tech-wise but also give me less friction when editing the site or making posts and Bear Blog fit that pretty well.

    2 votes
  21. mxuribe
    Link
    @scojjac For decades now (my first site was mid/late 1997), I've tried multiple approaches from Blogger to low-cost shared hosting to Wordpress to currently self-hosting a static site on a...

    @scojjac For decades now (my first site was mid/late 1997), I've tried multiple approaches from Blogger to low-cost shared hosting to Wordpress to currently self-hosting a static site on a low-cost VPS provider, etc. etc. Over the years i would spend so much time on the infrastructure and/or application setup and/or CMS setup that i distracted myself from actually writing...so over the last few years i just stuck to a few basic static (hand-crafted) html pages and a tiny bit of css. (I save time by simply manually copying-pasting the html template from last post to a new onw...it saves time due to my simple sites nowadays.) I will say that those years of playing so much with infrastructure and dev. stuff did help me with my tech career, so its not a total loss. But, nowadays, my hope is that being content with the simplest infrastructure can give me the space to focus more on writing...though lately my writing has favored private content and not always appropriate for public display/consumption...funny how life happens, eh?

    If your intent is simply to publish your thoughts or media (e.g. photography) out into the world, here is my advise to you:

    • Use a mechanism or platform that gives you total control of your content...You should have sovereignty over your content. Be prepared to pay money for this freedom. If Bear blog allows you to occasionally export/archive your content so you can migrate to another platform in the future, then cool, keep using Bear blog. If not, then find another mechanism to publish your thoughts where you are in control. Again, you should pay for hosting; you get what you pay for.
    • Use a tool that is quick and easy to publish your content. Don;'t adopt a tool that creates such a cumbersome process/workflow for you. There's a reason static site generators are (still) popular: because they help folks accomplish what they want with respect to publishing their thoughts without too much fancy trinkets and with speed (I'm referring to speediness of publishing, but of course static sites help with speed on the consumption side too).
    • Worry less about the appearance and/or underlying tech stack if that begins to distract you from your goal of publishing your content.
    • Publish more.
    • Publish more.
    • Publish more!
      :-)
    2 votes
  22. devilized
    Link
    I host mine using App Engine on Google Cloud. It's a single page with a tiny bit of PHP and also hosts me resume. I only get a few dozen visits a month, so it fits well within their free tier.

    I host mine using App Engine on Google Cloud. It's a single page with a tiny bit of PHP and also hosts me resume. I only get a few dozen visits a month, so it fits well within their free tier.

    1 vote
  23. [3]
    liv
    Link
    I'm afraid I do use wp CMS because I could never get my head around Drupal, and my site eventually had way too many parts and files to work well anymore with html (plus I can't write code for...

    I'm afraid I do use wp CMS because I could never get my head around Drupal, and my site eventually had way too many parts and files to work well anymore with html (plus I can't write code for toffee).

    I've had an ongoing problem in New Zealand with my hosts being bought out from under me by big conglomerates, so it moves a lot.

    Recently migrated to MyHost to escape CrazyDomains.

    When I first heard CrazyDomains Dubai was about to buy my previous host, I immediately migrated my business website to a NZ server, but I stupidly left my personal website at Crazy to see what it was like. (Big mistake. They are the worst and most dishonest company I've had the displeasure of dealing with in a long time. They told me they had sold me space on a server that could not be accessed unless I paid them several hundred dollars to fix it - bizarre. Obviously I noped out of there).

    1 vote
    1. [2]
      scojjac
      Link Parent
      Is “toffee” a euphemism here? If so that’s amazing because I hate toffee. haha

      Is “toffee” a euphemism here? If so that’s amazing because I hate toffee. haha

      1. liv
        Link Parent
        I think it's a saying I got from one of my grandparents! So, early 20th century slang.

        I think it's a saying I got from one of my grandparents! So, early 20th century slang.

  24. Handshape
    Link
    I've been mucking about with Jekyll, GitHub Pages, and Ghost on a mishmash of free-tier IaaS and SaaS providers. We're spoiled for choice these days.

    I've been mucking about with Jekyll, GitHub Pages, and Ghost on a mishmash of free-tier IaaS and SaaS providers. We're spoiled for choice these days.

    1 vote
  25. Turtle42
    Link
    I'm running Hugo on an Arch Linux server on a Linode cloud instance. Costs me five dollars a month. It's a simple static site that loads super fast. I'm a noob so it's fun to learn for me as it...

    I'm running Hugo on an Arch Linux server on a Linode cloud instance. Costs me five dollars a month. It's a simple static site that loads super fast. I'm a noob so it's fun to learn for me as it seems pretty manual, you write everything in markdown, etc. There's some decent open source themes available for it too.

    1 vote
  26. borntyping
    Link
    GitHub Pages. Free has been less important to me than not having to maintain it at all, even if I don't touch it for years at a time.

    GitHub Pages. Free has been less important to me than not having to maintain it at all, even if I don't touch it for years at a time.

    1 vote
  27. Perhaps
    Link
    I have a tiny Linode server that I pay $5/month for and I run a basic LAMP stack + Wordpress on it. It’s been working great for my needs for about 5 years now.

    I have a tiny Linode server that I pay $5/month for and I run a basic LAMP stack + Wordpress on it. It’s been working great for my needs for about 5 years now.

    1 vote
  28. GOTO10
    Link
    A VPS with ARP networks, with whatever webserver OpenBSD has by default. Running your own SMTPD can still be done, no problem.

    A VPS with ARP networks, with whatever webserver OpenBSD has by default. Running your own SMTPD can still be done, no problem.

    1 vote
  29. Parou
    Link
    Literally just a raspberry pi with cloudflare and an automated script that is run to update the IP in cloudflare. Running like that for 7 years straight off an USB stick. But I also don't use...

    Literally just a raspberry pi with cloudflare and an automated script that is run to update the IP in cloudflare. Running like that for 7 years straight off an USB stick.

    But I also don't use prewritten CMS's, so it's not overloaded with janky scriptididoo frontend bs and overcomplicated backend that I don't need to display my website.

    I'm using nginx as the webserver.

    1 vote
  30. switchgear
    Link
    I use Easy PHP Devserver on my local machine to tinker around and develop stuff. If I make something that I want other people to see then I use basic shared hosting at Namcheap.

    I use Easy PHP Devserver on my local machine to tinker around and develop stuff. If I make something that I want other people to see then I use basic shared hosting at Namcheap.

  31. dfx
    Link
    I use Hugo as the SSG, GitHub pages as the host. When I push a change to my repo, GitHub actions builds the static site and publishes it to Pages. Free, and very straightforward. I’ve also used...

    I use Hugo as the SSG, GitHub pages as the host. When I push a change to my repo, GitHub actions builds the static site and publishes it to Pages. Free, and very straightforward. I’ve also used Netlify and Vercel in the past for similar things with great results.

    I’ve basically swapped all domains over to CloudFlare at this point because of their cheap wholesale pricing. I may use Porkbun if there is a good deal and then swap to CF at renewal time.

  32. lazycouchpotato
    Link
    Shared hosting on Namecheap for ~$30/yr that lets me host up to 3 websites. I got mine and a friend's Wordpress websites on it currently.

    Shared hosting on Namecheap for ~$30/yr that lets me host up to 3 websites. I got mine and a friend's Wordpress websites on it currently.

  33. r-tae
    Link
    I have a static site hosted on Sourcehut Pages which I build with Zola, it's very lightweight so I'm basically handwriting HTML and CSS but I can use templates if I need and it compiles SCSS so I...

    I have a static site hosted on Sourcehut Pages which I build with Zola, it's very lightweight so I'm basically handwriting HTML and CSS but I can use templates if I need and it compiles SCSS so I can use nested selectors without worrying about browser support. I manage my domain/DNS through Porkbun and I'm quite happy with them.

    I'm slowly moving away from Github as much as I can, because I don't want to use anything approaching 80% market share. Sourcehut Pages is also free, it might be a little slower but that's nothing a CDN wouldn't fix (I've heard good things about bunny.net). I also plan to use Plausible analytics in the future, which complies with GDPR so it doesn't require a consent banner. It's even self-hostable, although its very cheap anyway.

  34. g33kphr33k
    Link
    I've done it all. I've self hosted Apache and Nginx, then paid for hostcheap, namecheap, webhostingUK, but I've managed to get a seriously good deal with 20i who are StackDNS. They have a really...

    I've done it all. I've self hosted Apache and Nginx, then paid for hostcheap, namecheap, webhostingUK, but I've managed to get a seriously good deal with 20i who are StackDNS. They have a really good CDN cache and their hosts are all fast and load balanced.

    I've run my own blog on Wordpress for donkeys and now my wife's e-commerce site for hand crafted bits (I'll shout out thunderlizard.co.uk and simply not hyperlink it!) With WooCommerce. I think 20i are one of the neatest and fastest hosts I've used after bare metal on my own hardware at home.

    Personally, I also bare metal host a NextCloud for myself using Nginx because I've uncoupled from Google services. It's not as good but at least I know all my pics and video are full resolution and backed up correctly (restic to Backblaze off of the NAS storage used as target for my NextCloud files).

  35. debleb
    Link
    I use Neocities. It's not perfect but it's cheap and fine for my usecase, so I've never had reason to look for better. Its built in directory helps a lot when it comes to finding new sites and...

    I use Neocities. It's not perfect but it's cheap and fine for my usecase, so I've never had reason to look for better. Its built in directory helps a lot when it comes to finding new sites and making your own one known. https://debleb.fun/

  36. hkc
    Link
    Hugo + Netlify connect to Github.

    Hugo + Netlify connect to Github.