Arkadaşlar merhaba,
Aşağıdaki kodları içeren dosya sunucunun birinde sorunsuz çalışırken diğerinde 503 hatası veriyor neden olabilir acaba? php sürümü kaynaklı diye düşündüm bikaç ayar değiştirdim ama işe yaramadı?

<?php

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://deprem.afad.gov.tr/latestCatalogsList");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
            "m=0&utc=0&lastDay=1");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);

curl_close ($ch);
echo $output;
?>