None

Server Setup 2022

2021-12-31
5 minutes

The cloud is just someone else’s computer. In my case, the cloud is usually just my computer. As an avid self-hoster, I like to run a lot of things myself, for learning, privacy, and of course fun. And it’s hard to host anything without servers.

I have quite a few servers for various different use cases, switching things up every once in a while. But, at the time of writing, this is what my current setup looks like:

#Home server

My main server is the one which lives at home. I’ve had some form of server in my house for the last 7 years or so, with the current incantation being from last year. This server does so much, that it requires its own post just to talk about how it’s going.

#DNS

My smallest, most bespoke and strangest server is my DNS server. I don’t run anything fancy like pihole (for now), just plain ol’ dnsmasq. There’s a good reason for this: Partly because I don’t want to deal with the headaches of debugging network issues for everyone else in the house, but also because of the hardware constraints: The server is a Raspberry Pi Model B (yes, really). I mostly use this Pi for the bragging rights, but also seems a shame to waste some good silicon. The main reason for this server is so traffic to my home server stays on my LAN rather than running through my VPN gateway. It also acts as a cache, which is another nice touch.

#Monitoring

If a server isn’t monitored, does it really exist? How else do you know if it’s working correctly? In the interest of reliability, monitoring runs on its own VM, in a different datacentre to the rest of my servers (in this case, France).

For the monitoring itself, I really wanted to like statping, but recent versions were horrifically buggy, and support basically stopped altogether. Instead, I use uptime-kuma, a fantastic uptimerobot-inspired monitoring tool to check services are accessible. When an application goes down, uptime-kuma sends both an email and a message to a Matrix room.

I’m also a very big fan of healthchecks for monitoring scheduled tasks, using it for anything I can. I’m currently using the healthchecks hosted service, but in the spirit of self-hosting, I’m planning on hosting that myself too at some point.

#Gateway

My gateway server is my aptly-named gateway to all my servers.

First off, it serves as a Nebula gateway. I run Nebula as an overlay network to connect all my servers and devices together. Unlike WireGuard, traffic doesn’t flow via the central node - it travels directly between each device. This not only reduces network requirements on said central node, but also massively reduces the latency on connections, especially those on the same network. Nebula isn’t perfect, far from it, but for this it works great!

Secondly, it serves as my VPN gateway. Rather than port forwarding on my router, and exposing my home IP to the rest of the world, I route everything via a VPS. Any requests to servers in my house instead are sent to a VPS, forwarded down a WireGuard tunnel and onto my home server, where they are routed by Traefik to their final destination.

Neither of these 2 roles are resource intensive, not by a long shot. For this reason it runs on the smallest instance Vultr offer. You may think most VPS providers just offer the same ol’ $5 VM as everyone else, but Vultr, rarely, offer a $3.50 VM with even less RAM. When I installed it, I was a penny-pinching tight-ass, so this tier sounded perfect. Nowadays, it’s harder to find that tier on offer, but it’s worked fine ever since.

#Dokku

As a professional developer, I find myself quite often building lots of random things to solve problems I have. When said things are web-based, I want somewhere incredibly simple to host them. For almost everything, I just throw the container into docker-compose, and it runs from there. But for things I build, I’d much rather it deploy exactly when I want, with minimal interaction. I’d also like deploying new applications to be as simple as possible (without a bunch of Ansible setup), and potentially private (you lot don’t need to know everything I run). Yes I realize that’s not very IaC-like, but I’ll survive.

In the professional world, there are tools like Heroku. But I want to self-host as much as I possibly can, which is where Dokku comes in. If you’re used to Heroku, Dokku will feel very familiar. It lets me just throw applications with a Dockerfile at it (through git push), and it handles building, deploying, and ingress.

Dokku isn’t perfect, especially as it takes over an entire machine, but for my needs it works pretty well for my needs for now. It’s definitely something I’m interested in replacing, possibly with something kubernetes-based (I’m looking at you, gitkube), but that’s more of a longer-term goal.

#General application host

I prefer to run as much as I possibly can off my home server, but in some cases that just isn’t appropriate. Mostly due to constraints around the network, reliability and uptime concerns. For that I have a separate VPS which runs anything else I need accessible outside my house.

For the moment, the majority of what this server does is run my website, Plausible and a few tiny file host things. When I provisioned it, I had imagined my plan for moving away from a static site to go a little faster than it has done (or to have at least started), and so it would live there. For now given it’s just a static site, it’s a little overkill, but it leaves ample room to grow or host other things should I need to.

Plausible mostly lives here due some previous issues I had running Clickhouse on my ZFS pool. It’s possible those were solved by my calming measures, but it’s not especially easy to tell. For now, I wanted it as available as possible to track website usage, so here it shall stay.

#Provider

The majority of my servers are Virtual Private Servers, meaning VMs running on someone else’s hypervisor. For me, it’s Vultr. I’ve been a happy user of Vultr for a number of years. Their servers are fast, networks are reliable, and pricing is normal.

With most VPS providers, there’s not a huge difference in costs. They’ve mostly standardized on how much compute $5 will get you, and increase the same amount from there. Unless you’re looking at companies like AWS, Google Cloud and Azure, they’re all basically the same cost-wise.

<aside>

Apparently Mythic-Beasts never got that memo.

</aside>

Whilst Vultr has been great, I’m looking into moving. They’ve not done anything wrong, I just want to go somewhere else, partly so my money goes somewhere other than a VC-funded company. Currently, the top runner is Linode, but we’ll see what 2022 brings.

Share this page

Similar content

View all →

Singapore light design

Server Setup 2023

2022-12-31
13 minutes

For a few years now, I've tried as hard as I can to run everything on servers I control, ideally servers I physically control. Partly in an attempt to regain my privacy, party because it's much more fun this way. Over the last year, things have stayed fairly stable hardware-wise…

Home Server 2022

2021-12-31
8 minutes

For the last 7 years or so, I’ve had some form of server sitting in my house. Its size and utility have changed massively in this time, but I couldn’t imagine life without it. Both prefer to and enjoy running a number of applications for myself, in a (possibly futile)…

Server build 2020 - Proxmox setup

2021-05-03
12 minutes

Back in December, I fully rebuilt my home server from the ground up based on Proxmox. Being a hypervisor OS, it makes sense to run everything in VMs or LXC containers, not on the host. Therefore, there’s a huge amount of scope for opinions, lessons and customizations. I’ve had quite…