
            <!DOCTYPE html>
            <html>
            <head><meta charset="utf-8"></head>
            <body>
              <center>
                <h2><br>DOMINIO APONTADO PARA O IP: 45.161.255.63 <br></h2>
                <h2>SEU IP: <span id="real-ip">Buscando...</span></h2>
                <h2 id="datetime"></h2>
              </center>
              <script>
                // O próprio navegador busca o IP externo real, ignorando o HAProxy
                fetch("https://api.ipify.org?format=json")
                  .then(response => response.json())
                  .then(data => {
                    document.getElementById("real-ip").textContent = data.ip;
                  })
                  .catch(() => {
                    document.getElementById("real-ip").textContent = "192.168.0.1 (Sem acesso à internet externa)";
                  });
        
                const now = new Date();
                const options = {weekday: "long", day: "2-digit", month: "long", year: "numeric", hour: "2-digit", minute: "2-digit", second: "2-digit"};
                document.getElementById("datetime").textContent = now.toLocaleString(undefined, options);
              </script>
            </body>
            </html>