<!DOCTYPE html>
<html>
<head>
    <title>LifeIQ Server</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background: #f9f9f9;
        }
        h1 {
            color: #333;
            border-bottom: 3px solid #0066cc;
            padding-bottom: 10px;
        }
        .site {
            background: white;
            padding: 25px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .site h2 {
            margin-top: 0;
            color: #0066cc;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
        }
        a:hover {
            text-decoration: underline;
        }
        .info {
            color: #666;
            font-size: 14px;
            margin-top: 10px;
        }
        .footer {
            text-align: center;
            color: #999;
            font-size: 12px;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
        }
        .warning {
            background: #fff3cd;
            border: 1px solid #ffc107;
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
        }
    </style>
</head>
<body>
    <h1>Welcome to lifeiq.com.au Server</h1>

    <div class="warning">
        <strong>⚠️ SSL Certificate Warning:</strong> You are accessing this server via IP address with a self-signed certificate.
        Please use the domain names below for proper SSL certificates.
    </div>

    <p>This server hosts two applications. Please access them using their domain names:</p>

    <div class="site">
        <h2>📚 Moodle LMS</h2>
        <p><a href="https://courses.lifeiq.com.au">https://courses.lifeiq.com.au</a></p>
        <p class="info">LifeIQ Learning Platform - Learning Management System</p>
    </div>

    <div class="site">
        <h2>🛒 WordPress + WooCommerce</h2>
        <p><a href="https://lifeiq.com.au">https://lifeiq.com.au</a></p>
        <p class="info">E-commerce Platform with WooCommerce</p>
    </div>

    <div class="footer">
        <p>Server IP: 170.64.166.94 | Powered by Nginx + PHP 8.3</p>
    </div>
</body>
</html>