Running Filebrowser: Simple Web-Based File Manager

Sometimes you just need a simple way to browse and manage files on your server through a web browser. No complex sync engine, no collaboration features, no bloat — just a clean file manager that works. That’s exactly what Filebrowser delivers. Filebrowser gives you a web-based file manager with upload, download, rename, delete, and sharing capabilities. It’s a single binary (or Docker container), uses almost no resources, and takes about two minutes to set up. ...

February 16, 2026 · 6 min · Self Host Setup

Self-Hosting Audiobookshelf: Your Own Audible Replacement

Self-Hosting Audiobookshelf: Your Own Audible Replacement Audible charges $15/month for one audiobook. If you already own audiobooks (or know where to find DRM-free ones), you’re paying for a streaming app you don’t need. Audiobookshelf is a self-hosted audiobook and podcast server that gives you everything Audible does — streaming, progress sync, mobile apps, chapters, bookmarks — for your own library. It’s free, open source, and genuinely polished. What Audiobookshelf Does Stream audiobooks from any device (web, iOS, Android) Track progress across devices with automatic sync Chapter support with skip and navigation Podcast management with auto-download Multiple users with individual progress tracking Metadata fetching from Audible, Google Books, OpenLibrary, iTunes Bookmarks and notes for any position in a book Sleep timer and playback speed controls Offline download in mobile apps Series and collection organization It’s not a compromise — it’s genuinely better than Audible for managing your own library. ...

February 16, 2026 · 7 min · Self Host Setup

Self-Hosting Uptime Ping: Zero-Dependency Monitoring Tool

Self-Hosting Uptime Ping: Zero-Dependency Monitoring Tool You’ve got a handful of self-hosted services running. Nextcloud, Gitea, maybe a media server. How do you know when one goes down? Most people reach for Uptime Kuma — and it’s great. But sometimes you want something simpler. No Node.js runtime, no database, no dashboard you’ll never look at. Just ping your services, tell you when something’s down, and get out of the way. ...

February 16, 2026 · 7 min · Self Host Setup

Setting Up Watchtower: Auto-Update Docker Containers

One of the hidden maintenance costs of self-hosting is keeping everything updated. When you’re running 10, 20, or 50 Docker containers, manually pulling new images and recreating containers gets old fast. Miss an update and you might be running a version with known security vulnerabilities. Watchtower solves this by automatically monitoring your running containers, pulling new images when they’re available, and gracefully restarting containers with the same configuration. Set it up once, and your homelab stays current without you lifting a finger. ...

February 16, 2026 · 8 min · Self Host Setup

Self-Hosting Wallabag: Read-It-Later Alternative to Pocket

If you’ve ever used Pocket or Instapaper to save articles for later, you know the value of a good read-it-later service. But those services track your reading habits, inject ads, and can shut down features at any time. Wallabag gives you the same experience — save articles with one click, read them distraction-free, sync across devices — entirely on your own server. In this guide, we’ll set up Wallabag with Docker, configure it with PostgreSQL for reliable storage, and connect browser extensions and mobile apps for a seamless reading workflow. ...

February 15, 2026 · 6 min · Self Host Setup

selfhost-doctor: One-Command Health Check for Your Self-Hosted Server

Your self-hosted server is humming along — but is it actually healthy? Disk filling up? Docker containers silently unhealthy? SSH config wide open? SSL certs about to expire? selfhost-doctor answers all of that with one command. Quick Start curl -fsSL https://raw.githubusercontent.com/bird/selfhost-doctor/main/selfhost-doctor.sh | bash That’s it. No installation, no dependencies, no API keys. Just a clean diagnostic report in your terminal. What It Checks selfhost-doctor runs through 7 categories of health checks: ...

February 15, 2026 · 6 min · Self Host Setup

Running Forgejo: Lightweight Gitea Fork for Code Hosting

Want to host your own code without relying on GitHub or GitLab? Forgejo is a community-driven fork of Gitea — lightweight, fast, and designed to stay free forever. It’s everything you need for private repos, CI/CD, and team collaboration on your own hardware. Why Forgejo Over Gitea? Forgejo forked from Gitea in 2022 after governance concerns. The key differences: Community-governed — no single company controls it Guaranteed free — committed to staying FOSS, no enterprise bait-and-switch Federation support — working toward ActivityPub integration (follow repos across instances) Same codebase — if you know Gitea, you know Forgejo Drop-in replacement — migrate from Gitea with zero data loss Prerequisites Docker and Docker Compose ~256MB RAM (runs great on a Pi) A domain (optional but recommended) Step 1: Setup mkdir -p ~/forgejo && cd ~/forgejo Step 2: Docker Compose Create docker-compose.yml: ...

February 13, 2026 · 4 min · Self Host Setup

Running Calibre-Web: Your Own eBook Library Server

If you have a collection of eBooks scattered across devices, Calibre-Web brings them together into a beautiful, self-hosted library you can access from anywhere. Think of it as your personal Kindle store — minus the DRM and data harvesting. Calibre-Web is a web-based frontend for the popular Calibre eBook manager. It gives you a clean, modern interface to browse, read, and download your books from any browser or eReader device. ...

February 12, 2026 · 6 min · Self Host Setup

Running LocalAI: OpenAI-Compatible API on Your Own Server

You’re already using OpenAI’s API for chat, embeddings, or image generation. But every request costs money, sends your data to a third party, and depends on their uptime. What if you could run the same API — same endpoints, same format — on your own hardware? That’s exactly what LocalAI does. What Is LocalAI? LocalAI is a drop-in replacement for the OpenAI API. It runs entirely on your server and supports: ...

February 12, 2026 · 6 min · Self Host Setup

Self-Hosted Backup Strategy with Restic and Rclone

You’re running a home server with important data — photos, documents, databases, configurations. What happens when a drive dies? When you accidentally rm -rf the wrong directory? When ransomware hits? Restic + Rclone is the gold standard backup combo for self-hosters. Restic creates fast, encrypted, deduplicated snapshots. Rclone syncs them to any cloud provider. Together, they give you enterprise-grade backups for free. The 3-2-1 Backup Rule Before we start, understand the rule that prevents data loss: ...

February 12, 2026 · 7 min · Self Host Setup