поставил первый раз сервер на NginX все работает, кроме CURL. вот этот код отваливается по таймауту
if( !function_exists( 'curl_init' ) )
{
die( "Curl PHP package not installed!" );
}
/** Initializing CURL **/
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, XMLRPC_URL );
curl_setopt( $ch, CURLOPT_HEADER, false );
curl_setopt( $ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml") );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $data );
/** Now execute the CURL, download the URL specified **/
$response = curl_exec( $ch );
подскажите в какую сторону копать? nginx поставил впервые, не сильно пока в нем разбираюсь.