<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Public Test App</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            max-width: 600px;
            margin: 50px auto;
            padding: 20px;
            background: #f5f5f5;
        }
        .card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #22c55e;
            margin-top: 0;
        }
        .status {
            background: #dcfce7;
            color: #166534;
            padding: 10px 15px;
            border-radius: 5px;
            margin: 20px 0;
        }
        .info {
            color: #666;
            font-size: 14px;
        }
        code {
            background: #f3f4f6;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 13px;
        }
    </style>
</head>
<body>
    <div class="card">
        <h1>Public Test App</h1>
        <div class="status">
            This page is accessible without VPN.
        </div>
        <p>If you can see this page, Traefik is correctly routing public HTTPS traffic.</p>
        <div class="info">
            <p><strong>Access type:</strong> Public (HTTPS)</p>
            <p><strong>Entrypoint:</strong> <code>websecure</code> (port 443)</p>
            <p><strong>VPN required:</strong> No</p>
        </div>
    </div>
</body>
</html>