PHP CURL(无法连接到192.168.168.85端口8080:连接超时)

I am using PHP cURL to get the response back from the api (192.168.168.85:8080) with GET request. When i run the code in localhost. Everything runs perfect(response is obtained) but the same code does not work from the live server.

Here's my code

        $curl = curl_init();

    curl_setopt_array($curl, array(
        CURLOPT_RETURNTRANSFER => 1,
        CURLOPT_FOLLOWLOCATION=>1,
        CURLOPT_URL => $sendHere//$sendhere is (192.168.168.85:8080?along with some query strings)
    ));

    $resp = curl_exec($curl);

    $test=curl_error($curl);
    echo json_encode([$test,$resp]);

Every time the response is false along with Error 7. Failed to connect

I have done a lot of research and gone through all the question that have been asked and found that this could be because of proxy or port other than 80 but still cannot figure out how to solve the issue.

Please help