30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Tunnel Test</title>
|
|
<style>
|
|
*{margin:0;padding:0;box-sizing:border-box}
|
|
body{font-family:system-ui,-apple-system,sans-serif;display:flex;
|
|
align-items:center;justify-content:center;min-height:100vh;
|
|
background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff}
|
|
.card{background:rgba(255,255,255,.15);backdrop-filter:blur(12px);
|
|
border-radius:16px;padding:3rem 4rem;text-align:center;
|
|
box-shadow:0 8px 32px rgba(0,0,0,.25)}
|
|
h1{font-size:2rem;margin-bottom:.5rem}
|
|
p{opacity:.85;font-size:1.1rem}
|
|
.status{margin-top:1.5rem;padding:.75rem 1.5rem;background:rgba(255,255,255,.2);
|
|
border-radius:8px;font-family:monospace;font-size:.95rem}
|
|
.ok{color:#6eff6e}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>Reverse SSH Tunnel Test</h1>
|
|
<p>If you can see this, the tunnel to <strong>testrst.nixc.us</strong> is working.</p>
|
|
<div class="status"><span class="ok">✓</span> Tunnel active — served via nginx</div>
|
|
</div>
|
|
</body>
|
|
</html>
|