Infrastructure inventory
What runs where: nodes, services, and how they connect (high level, practical, and updated as it changes).
dlbuild.net is my home lab build log. The goal is to learn real infrastructure skills by building, breaking, fixing, and documenting — with secure defaults and repeatable steps.
What runs where: nodes, services, and how they connect (high level, practical, and updated as it changes).
Command snippets and case studies: errors encountered, what broke, and the exact steps used to recover.
A quick “green-check” view: status checks and the first logs/commands to run when something looks off.
Planned builds that turn into write-ups: monitoring, hardening, automation, backups, and documentation.
# validate nginx config and reload safely
sudo nginx -t && sudo systemctl reload nginx
# status checks (no pager)
sudo systemctl status nginx --no-pager
sudo systemctl status docker --no-pager
sudo systemctl status tailscaled --no-pager
sudo systemctl status cloudflared --no-pager
# resources
df -h
free -h
uptime
# containers
docker ps