https://github.com/herbeckrobin/dashboard
Self-hosted admin dashboard for managing web projects, deployments, domains & SSL on a single Debian server. Next.js 14 + nginx + PM2.
https://github.com/herbeckrobin/dashboard
admin-dashboard server
Last synced: 2 months ago
JSON representation
Self-hosted admin dashboard for managing web projects, deployments, domains & SSL on a single Debian server. Next.js 14 + nginx + PM2.
- Host: GitHub
- URL: https://github.com/herbeckrobin/dashboard
- Owner: herbeckrobin
- Created: 2026-03-04T16:34:25.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-27T13:45:31.000Z (3 months ago)
- Last Synced: 2026-03-27T23:59:29.642Z (3 months ago)
- Topics: admin-dashboard, server
- Language: JavaScript
- Homepage:
- Size: 432 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cloud Server Manager
**Self-hosted Dashboard zur Verwaltung von Web-Projekten auf einem einzelnen Server.**
[](https://nextjs.org/)
[](https://tailwindcss.com/)
[](https://nodejs.org/)
[]()
---
> [!IMPORTANT]
> Dieses Repository allein ist **nicht lauffähig**. Der Server muss zuerst mit dem [`install.sh`](../install.sh) Script provisioniert werden (Debian 12+ / Ubuntu 22.04+). Ohne die damit installierten Services (nginx, MariaDB, Certbot, PM2, Docker, etc.) funktioniert das Dashboard nicht.
---
## Was es kann
- **Projekt-Deployment** — Git-Push zu Gitea löst automatischen Build + Deploy aus
- **Framework-Installation** — WordPress, TYPO3, Redaxo, Contao, Laravel, Next.js, Express mit einem Klick
- **Domain & SSL** — Automatische nginx-Config, DNS-Check, Let's Encrypt SSL mit Retry
- **Monitoring** — PageSpeed-Scores, Server-Systeminfo, Backup-Status
- **E-Mail** — Domain-Setup, DKIM, Accounts, Aliases, Queue-Monitoring
- **Sicherheit** — Passkeys (WebAuthn), TOTP 2FA, Rate Limiting
## Architektur
```
Git Push → Gitea → Webhook:9000 (HMAC-SHA256)
→ Dashboard API:3005
→ clone/pull → install → build → nginx → SSL → PM2
```
Tech Stack
| Komponente | Technologie |
|---|---|
| Frontend | Next.js 14 (Pages Router), React 18, Tailwind CSS |
| Auth | Passkeys + TOTP 2FA |
| Daten | JSON-Dateien (kein SQL) |
| Server | nginx, PM2, systemd |
| Package Manager | Bun |
| Containers | Gitea, n8n, Umami, Nextcloud (Docker) |
| DB | MariaDB (nur für WordPress/Nextcloud) |
API Endpoints (Auszug)
| Endpoint | Funktion |
|---|---|
| `POST /api/projects/[id]/deploy` | Deployment starten |
| `GET /api/projects` | Alle Projekte auflisten |
| `GET /api/system-info` | Server-Status |
| `GET /api/summary` | n8n Integration |
| `GET /api/alerts` | n8n Alerts |
45+ Endpoints für Projekt-, Domain-, E-Mail- und System-Verwaltung.
## Struktur
```
dashboard/
├── pages/api/ # 45+ REST API Endpoints
├── lib/
│ ├── deploy.js # Deploy-Logik + nginx-Config
│ ├── install/ # Framework-Installer (WP, TYPO3, ...)
│ ├── auth.js # Passkeys + 2FA
│ └── sections/ # AI Content Section Registry
├── components/ # React UI Components
└── data/ # JSON Storage (projects, config, logs)
```
---
Built for managing multiple web projects on a single Debian server.