Update landing page to re-enable copyparty and disable Nextcloud

- Re-enable File Server tile pointing to /files/
- Disable Nextcloud tile (greyed out, temporarily disabled)
- Add proper deployment header with target location

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-08-19 19:40:07 +02:00
parent b25378bfcf
commit a672412e14

108
config/www/index.html Normal file
View File

@@ -0,0 +1,108 @@
<!-- DEPLOYMENT LOCATION: /var/www/homelab/index.html -->
<!-- Deploy with: sudo cp config/www/index.html /var/www/homelab/ -->
<!DOCTYPE html>
<html>
<head>
<title>Homelab Services</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0; padding: 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 900px; margin: 0 auto;
background: white; padding: 40px;
border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
h1 {
color: #333; text-align: center; margin-bottom: 10px;
font-size: 2.5em; font-weight: 300;
}
.subtitle {
text-align: center; color: #666; margin-bottom: 40px;
font-size: 1.1em;
}
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}
.service {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white; padding: 30px; border-radius: 8px;
text-decoration: none; text-center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
}
.service:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.service.disabled {
background: linear-gradient(135deg, #999 0%, #666 100%);
cursor: not-allowed;
opacity: 0.6;
}
.service.disabled:hover {
transform: none;
box-shadow: none;
}
.service.cloud {
background: linear-gradient(135deg, #0082c9 0%, #30b455 100%);
}
.service i {
font-size: 3em; margin-bottom: 15px; display: block;
}
.service h3 {
margin: 15px 0 10px 0; font-size: 1.4em; font-weight: 600;
}
.service p {
margin: 0; opacity: 0.9; font-size: 1em;
}
.service.disabled p {
opacity: 0.7;
}
.footer {
text-align: center; margin-top: 40px; color: #888;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="container">
<h1>Homelab Services</h1>
<p class="subtitle">Self-hosted applications and services</p>
<div class="services">
<a href="/gitea/" class="service">
<i class="fas fa-code-branch"></i>
<h3>Gitea</h3>
<p>Git Repository Server</p>
</a>
<a href="/files/" class="service">
<i class="fas fa-folder-open"></i>
<h3>File Server</h3>
<p>Upload & Download Files</p>
</a>
<a href="#" class="service disabled" onclick="return false;">
<i class="fas fa-cloud"></i>
<h3>Nextcloud</h3>
<p>Temporarily Disabled</p>
</a>
<a href="/media/" class="service">
<i class="fas fa-play-circle"></i>
<h3>Media Server</h3>
<p>Movies, Music & TV Shows</p>
</a>
</div>
<div class="footer">
<p><i class="fa fa-home"></i> Powered by ak-homelab.duckdns.org</p>
</div>
</div>
</body>
</html>