mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
Fix #2063 incorrect path to cacert.pem
This commit is contained in:
parent
6ce32b612f
commit
b8351bf3c8
2 changed files with 3 additions and 3 deletions
|
|
@ -287,7 +287,7 @@ class FileHandler
|
||||||
$request_headers = array();
|
$request_headers = array();
|
||||||
$request_cookies = array();
|
$request_cookies = array();
|
||||||
$request_options = array(
|
$request_options = array(
|
||||||
'verify' => \RX_BASEDIR . 'vendor/composer/ca-bundle/res/cacert.pem',
|
'verify' => \RX_BASEDIR . 'common/vendor/composer/ca-bundle/res/cacert.pem',
|
||||||
'timeout' => $timeout,
|
'timeout' => $timeout,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -197,8 +197,8 @@ date_default_timezone_set($internal_timezone);
|
||||||
/**
|
/**
|
||||||
* Set certificate authorities for curl and openssl.
|
* Set certificate authorities for curl and openssl.
|
||||||
*/
|
*/
|
||||||
ini_set('curl.cainfo', RX_BASEDIR . 'vendor/composer/ca-bundle/res/cacert.pem');
|
ini_set('curl.cainfo', RX_BASEDIR . 'common/vendor/composer/ca-bundle/res/cacert.pem');
|
||||||
ini_set('openssl.cafile', RX_BASEDIR . 'vendor/composer/ca-bundle/res/cacert.pem');
|
ini_set('openssl.cafile', RX_BASEDIR . 'common/vendor/composer/ca-bundle/res/cacert.pem');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the cache handler.
|
* Initialize the cache handler.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue