<!DOCTYPE html>
<html>
<head>
    <title>TURN Server</title>
    <style>
        body { font-family: Arial, sans-serif; max-width: 600px; margin: 50px auto; padding: 20px; }
        h1 { color: #333; }
        p { line-height: 1.6; }
        code { background: #f4f4f4; padding: 2px 5px; border-radius: 3px; }
    </style>
</head>
<body>
    <h1>TURN Server</h1>
    <p>This is a TURN/STUN server for WebRTC connectivity.</p>
    <p><strong>Connection Details:</strong></p>
    <ul>
        <li>STUN: <code>stun:turn.elevate-coaching.pro:3478</code></li>
        <li>TURN (UDP): <code>turn:turn.elevate-coaching.pro:3478?transport=udp</code></li>
        <li>TURN (TCP): <code>turn:turn.elevate-coaching.pro:3478?transport=tcp</code></li>
        <li>TURNS (TLS): <code>turns:turn.elevate-coaching.pro:5349?transport=tcp</code></li>
    </ul>
    <p>Authentication is required for TURN access.</p>
</body>
</html>