- nginx 安全加固 (CSP, HSTS, 缓存策略) - 共享 style.css - 138个页面全部接入 Co-authored-by: Hermes AI <agent@hermes>
102 lines
3.1 KiB
HTML
102 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
.cover {
|
|
width: 1200px; height: 675px;
|
|
background: linear-gradient(135deg, #0f1a2e 0%, #1a3050 40%, #2a4a7a 100%);
|
|
display: flex; flex-direction: column; justify-content: center;
|
|
padding: 60px 70px;
|
|
position: relative; overflow: hidden;
|
|
font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
}
|
|
.cover::before {
|
|
content: '';
|
|
position: absolute; top: -200px; right: -200px;
|
|
width: 600px; height: 600px;
|
|
background: radial-gradient(circle, rgba(74, 122, 181, 0.15) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
}
|
|
.cover::after {
|
|
content: '';
|
|
position: absolute; bottom: -150px; left: -150px;
|
|
width: 500px; height: 500px;
|
|
background: radial-gradient(circle, rgba(100, 180, 255, 0.08) 0%, transparent 70%);
|
|
border-radius: 50%;
|
|
}
|
|
.badge {
|
|
display: inline-block; align-self: flex-start;
|
|
background: rgba(74, 122, 181, 0.3);
|
|
border: 1px solid rgba(74, 122, 181, 0.5);
|
|
color: #8ab8e8; padding: 6px 16px; border-radius: 20px;
|
|
font-size: 13px; letter-spacing: 2px; margin-bottom: 20px;
|
|
}
|
|
h1 {
|
|
font-size: 38px; font-weight: 700; color: #fff;
|
|
line-height: 1.3; margin-bottom: 12px;
|
|
max-width: 800px;
|
|
}
|
|
h1 em {
|
|
background: linear-gradient(135deg, #6a9ad8, #a8c8f0);
|
|
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
|
font-style: normal;
|
|
}
|
|
.subtitle {
|
|
font-size: 16px; color: rgba(255,255,255,0.6);
|
|
line-height: 1.5; margin-bottom: 24px;
|
|
max-width: 700px;
|
|
}
|
|
.stats {
|
|
display: flex; gap: 20px; margin-top: auto;
|
|
}
|
|
.stat-card {
|
|
background: rgba(255,255,255,0.06);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
border-radius: 8px; padding: 12px 18px;
|
|
}
|
|
.stat-card .num {
|
|
font-size: 22px; font-weight: 700; color: #8ab8e8;
|
|
}
|
|
.stat-card .label {
|
|
font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px;
|
|
}
|
|
.bottom {
|
|
margin-top: 32px;
|
|
display: flex; justify-content: space-between; align-items: flex-end;
|
|
border-top: 1px solid rgba(255,255,255,0.08);
|
|
padding-top: 16px;
|
|
}
|
|
.bottom .left { font-size: 11px; color: rgba(255,255,255,0.3); }
|
|
.bottom .right { font-size: 11px; color: rgba(255,255,255,0.3); }
|
|
</style>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="cover">
|
|
<div class="badge">🔒 基础设施安全实战</div>
|
|
<h1>AI系统的依赖安全:<br>从<em>1个critical</em>到<em>零漏洞</em>的12小时</h1>
|
|
<div class="subtitle">@whiskeysockets/baileys "no fix available" → 零漏洞验证<br>自动化安全审计cron的实战记录</div>
|
|
<div class="stats">
|
|
<div class="stat-card">
|
|
<div class="num">0</div>
|
|
<div class="label">修复后漏洞数</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="num">12h</div>
|
|
<div class="label">发现→清零</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="num">12</div>
|
|
<div class="label">系统安全包更新</div>
|
|
</div>
|
|
</div>
|
|
<div class="bottom">
|
|
<div class="left">📅 2026年7月4日</div>
|
|
<div class="right">一切皆如 · 编辑</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|