Change domain expiration lookup service from Heroku to ITFlow

This commit is contained in:
Marcus Hill 2022-12-08 20:30:23 +00:00
parent 01bc31728f
commit 21e641d128
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ function getDomainExpirationDate($name){
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://itflow-whois.herokuapp.com/$name");
curl_setopt($ch, CURLOPT_URL, "http://lookup.itflow.org:8080/$name");
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$response = json_decode(curl_exec($ch),1);