Bitnami:SSL证书问题:证书链中的自签名证书

时间:2019-10-23 09:52:40

标签: wordpress curl guzzle bitnami nuxeo

我有一个安装了wordpress的Bitnami wamp堆栈(服务器1)。我在Wordpress中安装的Nuxeo插件有问题,我收到错误:SSL证书问题:证书链中的自签名证书。 WordPress的Nuxeo插件尝试向其他服务器(服务器2)发送CURL文档请求。最近服务器已完成证书更新。

我正在寻找为适应更改而必须进行的更改。

它以前工作正常,在(服务器1)上没有更改,但是最近在(服务器2)上完成了证书更改。

 try {
        $response = $this->request->send();
        $answer = $response->getBody(true);
      } catch(RequestException $ex) {
        ;
         echo "<pre>";
            print_r($ex);
            echo "</pre>";

        throw new NuxeoClientException("error", NuxeoClientException::INTERNAL_ERROR_STATUS, $ex);
      }

上面的代码回显错误:

[curlError:Guzzle\Http\Exception\CurlException:private] => SSL certificate problem: self signed certificate in certificate chain
    [curlErrorNo:Guzzle\Http\Exception\CurlException:private] => 60

0 个答案:

没有答案