SSL self signed / Override certificate check | Drupal 8

SSL self signed / Override certificate check

Submitted by editor on Mon, 04/04/2016 - 10:17
Question

How to Override SSL certificate check (https://) on linux / PHP / Apache / cURL ... ?

On linux (wget)

wget --no-check-certificate https://yourdomain.com
wget --no-check-certificate https://name:pass@yourdomain.com

On Apache PHP

$context=array(
    "ssl"=>array(
        "verify_peer"=>false,
        "verify_peer_name"=>false,
    ),
);  
$response = file_get_contents("https://yourdomain.com", false, stream_context_create($context));

On PHP cURL:

curl_setopt($rCURL, CURLOPT_SSL_VERIFYPEER, false);

Other Solutions:
TODO

Add new comment

Plain text

  • No HTML tags allowed.
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.