When I try to make a curl with https in nginx + php-fpm, I get the following error in php-fpm.log
WARNING: [pool www] child 661 exited on signal 11 (SIGSEGV) after 64.104500 seconds from start [20-Aug-2014 00:09:43] NOTICE: [pool www] child 670 started
Nginx also gave me a Gateway 502 answer.
Simple code:
<?php $ch = curl_init('https://www.google.com/'); curl_exec($ch);
source share