The year of self hosting

Over the last month or so, I’ve come to embrace my home server setup and how powerful it can be. Here I have this small little Intel NUC Server, for which I promised myself I would do lots of cool and interesting things with.

The first thing I’ve hosted is Plex. I’ve used Docker Compose to bring up a Plex Docker container, with:

The way it works is this:

  1. From my phone or tablet, I send a web request to webhook container with details of the download (using Workflow)
  2. Webhook then calls Transmission, and Transmission starts downloading
  3. When the download is finished, it is put in a folder so either Beets or Filebot can access it. They then tag the download and move it to the correct folder for Plex.
  4. I get sent a notification and I’ll manually update the Plex library. (File system notifications are a bit funny with docker )

This system has worked well over the past year and a bit. So well, I’m actively researching other things I could self host. Over the last week, I’ve added three more services:

To complement these, I’ve added a nginx reverse proxy. This means I only need two ports, 80 (normal http) & 443 (secure https by letsencrypt) open and I can access different services by using the hostname. So my Miniflux container will be at rss.example.com, whereas my Transmission container will be at trans.example.com. Nice and easy to remember!

I’m still actively researching other cool things to host. my biggest problem is backing it all up. At the moment I’m just keeping everything in a private git repository - which isn’t the most desirable backup strategy. Other things which I’ve thought of:

If you’ve got any suggestions, hit me up on Twitter, I’m @dueyfinster