This article continues the story that started with the Birth of the Infrastructure.

In the beginning, everything lived on a small VPS: reverse proxy, applications, experiments, monitoring. It worked – but it was never meant to scale. The next logical step was obvious:

Move the heavy work home, keep the VPS as a lean edge.

That is how the HOME server was born as an AI & compute hub.


1. Why I Moved Compute Home

Running everything on a VPS was convenient, but it had clear limits:

So I decided to split the architecture into two clear roles:

The HOME server became the place where everything real happens.


2. The Hardware and Base System

The HOME node is a small, quiet but powerful box:

Base setup:

From that point on, almost everything is managed as containers.


3. The Service Stack on HOME

Over time, the HOME server grew into a full-stack platform with these key components:

3.1 Pi-hole – DNS and Filtering

Pi-hole is the DNS backbone of my network:

Almost every service, including the AI stack, implicitly depends on Pi-hole working correctly.


3.2 WordPress (public-website.example)

The educational project Edu-Cat was migrated from external hosting to the HOME server:

This move gave me:


3.3 n8n – Automation & Orchestration

n8n is my automation engine:

Typical use cases:

n8n is the glue that binds infrastructure pieces together.


3.4 Sim AI (OpenWebUI)

Sim AI is my main UI for working with AI models:

It turns the HOME server into a personal AI lab, not just a static apps box.


3.5 Ollama – Local Models

Ollama runs on HOME to provide private, local inference:

The difference is simple:

The HOME server makes both options possible and easy to switch between.


4. How HOME Connects to the Edge (VPS)

The HOME server is not directly exposed to the internet.

Instead, everything goes through:

Public requests (for example to automation.example or public-website.example) travel like this:

Internet → VPS (Traefik, HTTPS) → WireGuard tunnel → HOME:port → container

This design gives me:


5. Docker Structure and Organization

All HOME workloads live under a clear directory structure, e.g.:

This separation allows:


6. Monitoring, Recovery and Reality

The HOME server is not just “another machine”:

Because of that, I treat it like a small production environment:

It is not a lab. It is the core of my digital infrastructure.


7. Lessons Learned

Some of the key lessons from building the HOME server as an AI & compute hub:

The HOME server is not a one-time project. It is an evolving platform that grows together with my needs and my understanding of how I want my systems to behave.

This article is just the snapshot of one point in time.