Add initial infrastructure and backup scripts for Gitea and homelab deployment

- Create README.md with project layout and quick start instructions
- Implement backup scripts for Gitea, including database and repository exports
- Add systemd service and timer for automated Gitea backups
- Develop bootstrap scripts for homelab and VPS setup
- Document architecture and restore procedures
- Configure Caddy reverse proxy and Docker Compose for service management
- Establish secrets management guidelines
This commit is contained in:
2026-03-04 14:42:46 -05:00
commit c93dcb5daf
21 changed files with 531 additions and 0 deletions

15
edge/caddy/Caddyfile Normal file
View File

@@ -0,0 +1,15 @@
git.sketchferret.com {
reverse_proxy 100.115.54.124:4445
}
home.sketchferret.com {
reverse_proxy 100.115.54.124:5300
}
esphome.sketchferret.com {
reverse_proxy 100.115.54.124:6052
}
calfill.sketchferret.com {
reverse_proxy 100.115.54.124:5300
}

15
edge/caddy/compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
caddy:
image: caddy:2.8.4
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro
- caddy_data:/data
- caddy_config:/config
volumes:
caddy_data:
caddy_config: