Force use of latest cacert.pem from Mozilla

This commit is contained in:
Kijin Sung 2021-01-20 00:56:23 +09:00
parent 0079fc7b38
commit 1bbd6cdb5f
3 changed files with 3236 additions and 1 deletions

View file

@ -286,7 +286,10 @@ class FileHandler
$host = parse_url($url, PHP_URL_HOST);
$request_headers = array();
$request_cookies = array();
$request_options = array('timeout' => $timeout);
$request_options = array(
'verify' => \RX_BASEDIR . 'common/libraries/cacert.pem',
'timeout' => $timeout,
);
foreach($headers as $key => $val)
{