Add reverse proxy masking and Cloudflare panel SSL via DNS-01.

Introduce Caddy-based reverse proxy with decoy site and DPI masking, plus automatic Let's Encrypt certificate issuance for the panel through Cloudflare API without binding port 443.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
test2
2026-07-08 00:41:50 +03:00
co-authored by Cursor
commit 7ef408afe7
46 changed files with 19886 additions and 0 deletions
+94
View File
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Cloud infrastructure and managed services for modern teams.">
<meta name="robots" content="index, follow">
<title>{{SITE_TITLE}}</title>
<link rel="stylesheet" href="/style.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>☁</text></svg>">
</head>
<body>
<header class="header">
<div class="container header-inner">
<div class="logo">{{SITE_TITLE}}</div>
<nav class="nav">
<a href="#services">Services</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<p class="hero-badge">Trusted by teams worldwide</p>
<h1>Reliable cloud infrastructure<br>for your business</h1>
<p class="hero-lead">We deliver secure hosting, CDN acceleration, and 24/7 monitoring — so you can focus on building products.</p>
<div class="hero-actions">
<a class="btn btn-primary" href="#contact">Get started</a>
<a class="btn btn-secondary" href="#services">Learn more</a>
</div>
</div>
</section>
<section id="services" class="section">
<div class="container">
<h2>Our services</h2>
<div class="grid">
<article class="card">
<div class="card-icon">🚀</div>
<h3>Managed hosting</h3>
<p>High-availability clusters with automatic failover and daily backups.</p>
</article>
<article class="card">
<div class="card-icon">🔒</div>
<h3>Security</h3>
<p>TLS everywhere, WAF protection, and compliance-ready infrastructure.</p>
</article>
<article class="card">
<div class="card-icon">📊</div>
<h3>Analytics</h3>
<p>Real-time metrics, uptime dashboards, and actionable alerts.</p>
</article>
</div>
</div>
</section>
<section id="about" class="section section-muted">
<div class="container about">
<div>
<h2>Built for uptime</h2>
<p>Since 2018 we have operated edge nodes across multiple regions. Our platform is designed for low latency, horizontal scaling, and predictable billing.</p>
<ul class="checklist">
<li>99.9% SLA on production workloads</li>
<li>ISO 27001 aligned practices</li>
<li>Human support, not ticket bots</li>
</ul>
</div>
<div class="stats">
<div><strong>40+</strong><span>Regions</span></div>
<div><strong>2M+</strong><span>Requests/day</span></div>
<div><strong>12ms</strong><span>Avg latency</span></div>
</div>
</div>
</section>
<section id="contact" class="section">
<div class="container contact">
<h2>Contact us</h2>
<p>hello@{{SITE_DOMAIN}}</p>
<p class="muted">Business hours: MonFri, 9:0018:00 UTC</p>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<p>&copy; 2026 {{SITE_TITLE}}. All rights reserved.</p>
</div>
</footer>
</body>
</html>