Initial commit: lzwlab.cn server project (docs, nginx, gitea, rustdesk, file transfer app)

This commit is contained in:
2026-08-26 22:59:47 +08:00
commit 7da61a0456
18 changed files with 2703 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>欢迎访问 lzwlab.cn</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}
.card {
background: rgba(255, 255, 255, .95);
border-radius: 16px;
padding: 48px 56px;
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
max-width: 90vw;
}
h1 { font-size: 2.2rem; color: #333; margin-bottom: 12px; }
p { color: #666; line-height: 1.8; }
.badge {
display: inline-block;
margin-top: 20px;
padding: 6px 16px;
border-radius: 999px;
background: #667eea;
color: #fff;
font-size: .85rem;
}
.tool-link {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 16px;
padding: 12px 28px;
border-radius: 999px;
background: #fff;
color: #667eea;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
box-shadow: 0 8px 24px rgba(102, 126, 234, .35);
transition: transform .15s, box-shadow .15s;
}
.tool-link:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(102, 126, 234, .45); }
.tool-link:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
</style>
</head>
<body>
<div class="card">
<h1>🎉 欢迎访问 lzwlab.cn</h1>
<span class="badge">Powered by Nginx</span>
<br>
<a class="tool-link" href="/transfer/">📦 进入文件快传</a>
<br>
<a class="tool-link" href="/git/">🐙 进入 Git 服务</a>
</div>
</body>
</html>