From 667f9f4357fb766fd0488cdbec16be5b9fbc2d5c Mon Sep 17 00:00:00 2001 From: "James M. Joyce" Date: Wed, 3 Feb 2021 10:05:16 -0600 Subject: [PATCH] Change CA cert bundle URL The curl domain has changed from curl.haxx.se to curl.se. Calling update_certs.php with the old CA bundle URL may result in the text of the 301 response being downloaded instead of the bundle file, breaking communication with Stripe. --- update_certs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_certs.php b/update_certs.php index a73622cca..cb72b6181 100755 --- a/update_certs.php +++ b/update_certs.php @@ -9,7 +9,7 @@ $options = [ \CURLOPT_FILE => $fp, \CURLOPT_TIMEOUT => 3600, - \CURLOPT_URL => 'https://curl.haxx.se/ca/cacert.pem', + \CURLOPT_URL => 'https://curl.se/ca/cacert.pem', ]; $ch = \curl_init();