How many hours has your family lost looking for the spare car key, the passport drawer, or the box of holiday lights?

The fix isn't a $30 Bluetooth tracker on every object. It's one small webpage only your household can see. A self-hosted "Lost & Found" index — a searchable list of where things live. Let's build it tonight.

Why a webpage beats a notes app

Notes apps sync to someone else's servers. They get buried under shopping lists. And nobody else in the house can edit them.

A shared page on your own network solves all three. It lives on hardware you control. Everyone bookmarks it. Anyone can update it. And it never leaves your house.

Step 1: Pick the box it runs on

You already own a candidate. An old laptop, a Raspberry Pi, even a spare phone. It needs to stay on and stay home. That's the whole point — this never touches the internet.

Step 2: Install a tiny wiki

The easiest tool here is DokuWiki. No database, just text files. If you have Docker, one command gets you running:

docker run -d -p 8080:80 \
  -v ~/lostfound:/storage \
  --name lostfound \
  dokuwiki/dokuwiki

Open http://your-server-ip:8080 and finish the 2-minute setup wizard. Set a password. Done.

No Docker? DokuWiki also runs on any cheap web host or a plain machine with PHP. The text-file storage means your data is just readable files — easy to back up, impossible to lock you out of.

Step 3: Build the index

Make one page called Home. Add a simple table:

^ Item ^ Location ^ Last updated ^
| Spare car key | Kitchen drawer, left | June |
| Passports | Bedroom safe | March |
| Phillips screwdriver | Garage pegboard | May |

The trick is being specific. Not "the office." Write "office, second shelf, blue bin." Future-you will thank present-you.

Step 4: Make it findable

DokuWiki has built-in search. Type "passport" and it jumps you there. Add a bookmark on every family member's phone labeled "Where's My Stuff."

Want it to load when anyone opens their browser? Set it as the home page on the shared tablet or the kitchen device.

Step 5: Keep it private

In DokuWiki's admin panel, go to Configuration Settings and set the ACL so only logged-in users can read. Now it's invisible to anyone outside your home network — and you never exposed it to the internet to begin with.

Back up the ~/lostfound folder weekly. Copy it to a USB stick. That folder is your entire system.

The one habit that makes it work

The page is only as good as the updates. Make a rule: when you move something important, you change the line. Thirty seconds. It beats forty minutes of searching.

Your takeaway: spin up DokuWiki on a spare device tonight, add five things your family loses most, and bookmark it on every phone in the house.