我在php中开发了一个代理服务,它使用php-curl在同一台服务器上请求另一个url。有时它很有效,但有时它需要很长时间,而且很多时候它会超时。
此应用程序不使用会话,因此它不能成为锁定的会话问题。我在调用curl_exec之前尝试使用session_write_close()作为测试,但没有区别。
这种不一致行为的原因是什么?我希望它立即做出回应,因为它所做的唯一工作就是提供302重定向。我在下面粘贴了我的代理功能。
protected function proxy( $pURL, $opts = array() ){
$defaults = array(
'headers' => array(),
'follow' => true,
'return' => false,
'return_headers' => false,
'referer' => fp_get_config( 'referer_override' ),
'user_agent' => $_SERVER['HTTP_USER_AGENT'],
'timeout' => 30,
'connect_timeout' => 10,
'fresh_connect' => false
);
$options = array_merge( $defaults, $opts );
extract( $options );
$c = curl_init( $pURL );
curl_setopt_array( $c, array(
CURLOPT_HEADER => $return_headers,
CURLOPT_USERAGENT => $user_agent,
CURLOPT_REFERER => $referer,
CURLOPT_CONNECTTIMEOUT => $connect_timeout,
CURLOPT_TIMEOUT => $timeout,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => $follow,
CURLOPT_HTTPHEADER => $headers,
CURLOPT_FRESH_CONNECT => $fresh_connect,
CURLOPT_AUTOREFERER => true
));
//session_write_close();
$response = curl_exec( $c );
if ( $response === false )
die("Proxy Error: " . curl_error( $c ) );
curl_close( $c );
if ( $return )
return $response;
else {
if ( $return_headers ){
list( $headerblock, $body ) = explode("\r\n\r\n", $response, 2);
$headers = explode("\r\n", $headerblock );
foreach( $headers as $header )
header( $header );
echo $body;
} else
echo $response;
}
exit;
}
答案 0 :(得分:1)
原来发生的事情是:我们配置了两个负载平衡器以实现高可用性。每当一个lb向另一个lb发出curl请求时,防火墙就会阻止它导致连接超时。修复防火墙规则解决了这个问题。