- docker-compose.yml with all services - .env.example with placeholder secrets - Landing page HTML - Gitea→OpenProject webhook script - Comprehensive README with architecture docs
233 lines
7.1 KiB
HTML
233 lines
7.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>toppyr.de — Service Hub</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
|
min-height: 100vh;
|
|
color: #eee;
|
|
padding: 40px 20px;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
font-size: 2.5rem;
|
|
background: linear-gradient(90deg, #00d4aa, #00a8cc);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.subtitle {
|
|
text-align: center;
|
|
color: #888;
|
|
margin-bottom: 40px;
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 20px;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
}
|
|
.card {
|
|
background: rgba(22, 33, 62, 0.8);
|
|
border-radius: 16px;
|
|
padding: 25px;
|
|
border: 1px solid rgba(0, 212, 170, 0.2);
|
|
transition: all 0.3s ease;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: block;
|
|
}
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: #00d4aa;
|
|
box-shadow: 0 10px 40px rgba(0, 212, 170, 0.2);
|
|
}
|
|
.card-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 15px;
|
|
}
|
|
.card h2 {
|
|
font-size: 1.3rem;
|
|
margin-bottom: 8px;
|
|
color: #fff;
|
|
}
|
|
.card p {
|
|
font-size: 0.9rem;
|
|
color: #aaa;
|
|
line-height: 1.5;
|
|
}
|
|
.card .tag {
|
|
display: inline-block;
|
|
background: rgba(0, 212, 170, 0.2);
|
|
color: #00d4aa;
|
|
padding: 4px 10px;
|
|
border-radius: 20px;
|
|
font-size: 0.75rem;
|
|
margin-top: 12px;
|
|
}
|
|
.section-title {
|
|
grid-column: 1 / -1;
|
|
font-size: 1rem;
|
|
color: #e94560;
|
|
margin: 30px 0 10px;
|
|
padding-bottom: 8px;
|
|
border-bottom: 1px solid rgba(233, 69, 96, 0.3);
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
}
|
|
.section-title:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
.status-bar {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 40px;
|
|
margin-bottom: 40px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.status-item {
|
|
text-align: center;
|
|
}
|
|
.status-item .value {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
color: #00d4aa;
|
|
}
|
|
.status-item .label {
|
|
font-size: 0.8rem;
|
|
color: #666;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 50px;
|
|
color: #555;
|
|
font-size: 0.85rem;
|
|
}
|
|
footer a { color: #00d4aa; text-decoration: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>toppyr.de</h1>
|
|
<p class="subtitle">Collaboration & Infrastructure Hub</p>
|
|
|
|
<div class="status-bar">
|
|
<div class="status-item">
|
|
<div class="value">26</div>
|
|
<div class="label">Services</div>
|
|
</div>
|
|
<div class="status-item">
|
|
<div class="value">✓</div>
|
|
<div class="label">All Systems</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid">
|
|
<div class="section-title">🔧 Collaboration</div>
|
|
|
|
<a href="https://crm.toppyr.de" class="card">
|
|
<div class="card-icon">👥</div>
|
|
<h2>CRM</h2>
|
|
<p>Kontakte, Leads und Kundenbeziehungen verwalten</p>
|
|
<span class="tag">EspoCRM</span>
|
|
</a>
|
|
|
|
<a href="https://project.toppyr.de" class="card">
|
|
<div class="card-icon">📋</div>
|
|
<h2>Projekte</h2>
|
|
<p>Projektmanagement, Tasks und Zeiterfassung</p>
|
|
<span class="tag">OpenProject</span>
|
|
</a>
|
|
|
|
<a href="https://wiki.toppyr.de" class="card">
|
|
<div class="card-icon">📚</div>
|
|
<h2>Wiki</h2>
|
|
<p>Dokumentation und Wissensmanagement</p>
|
|
<span class="tag">XWiki</span>
|
|
</a>
|
|
|
|
<a href="https://support.toppyr.de" class="card">
|
|
<div class="card-icon">🎫</div>
|
|
<h2>Support</h2>
|
|
<p>Helpdesk und Ticket-System</p>
|
|
<span class="tag">FreeScout</span>
|
|
</a>
|
|
|
|
<a href="https://marketing.toppyr.de" class="card">
|
|
<div class="card-icon">📧</div>
|
|
<h2>Marketing</h2>
|
|
<p>E-Mail-Kampagnen und Automation</p>
|
|
<span class="tag">Mautic</span>
|
|
</a>
|
|
|
|
<a href="https://postiz.toppyr.de" class="card">
|
|
<div class="card-icon">📱</div>
|
|
<h2>Social Media</h2>
|
|
<p>Cross-Posting und Scheduling</p>
|
|
<span class="tag">Postiz</span>
|
|
</a>
|
|
|
|
<div class="section-title">💻 Development</div>
|
|
|
|
<a href="https://repo.toppyr.de" class="card">
|
|
<div class="card-icon">🦊</div>
|
|
<h2>Git</h2>
|
|
<p>Code-Repositories, Issues und CI/CD</p>
|
|
<span class="tag">Gitea</span>
|
|
</a>
|
|
|
|
<div class="section-title">🔐 Administration</div>
|
|
|
|
<a href="https://sso.toppyr.de" class="card">
|
|
<div class="card-icon">🔑</div>
|
|
<h2>SSO</h2>
|
|
<p>Single Sign-On und Benutzerverwaltung</p>
|
|
<span class="tag">Keycloak</span>
|
|
</a>
|
|
|
|
<a href="https://ldap.toppyr.de" class="card">
|
|
<div class="card-icon">👤</div>
|
|
<h2>LDAP</h2>
|
|
<p>Verzeichnisdienst</p>
|
|
<span class="tag">lldap</span>
|
|
</a>
|
|
|
|
<div class="section-title">📊 Monitoring</div>
|
|
|
|
<a href="https://status.toppyr.de" class="card">
|
|
<div class="card-icon">💚</div>
|
|
<h2>Uptime</h2>
|
|
<p>Service-Status und Alerts</p>
|
|
<span class="tag">Uptime Kuma</span>
|
|
</a>
|
|
|
|
<a href="https://netdata.toppyr.de" class="card">
|
|
<div class="card-icon">📈</div>
|
|
<h2>Metrics</h2>
|
|
<p>Server-Performance und Echtzeit-Metriken</p>
|
|
<span class="tag">Netdata</span>
|
|
</a>
|
|
|
|
<div class="section-title">🗃️ Daten</div>
|
|
|
|
<a href="https://gruen.toppyr.de" class="card">
|
|
<div class="card-icon">🌱</div>
|
|
<h2>Grüne Anträge</h2>
|
|
<p>ALLRIS-Datenbank Hagen</p>
|
|
<span class="tag">Datasette</span>
|
|
</a>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>VServer 152.53.119.77 · 16 GB RAM · 8 Cores · Debian 13</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|