joshdick / miniProxy

🚨⚠️ UNMAINTAINED! ⚠️🚨 A simple PHP web proxy.
http://joshdick.github.io/miniProxy
GNU General Public License v3.0
858 stars 542 forks source link

HTTPS are not working #132

Closed xsoft closed 5 years ago

xsoft commented 5 years ago

Basically none HTTPS page works (blank page is returned). PHP 7.2.18

xsoft commented 5 years ago

workaround (and not nice one) is to add:

  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);

above curl_setopt($ch, CURLOPT_URL, $url);