ty for creating prism relay!!!
When working against a local https mcp server i get the famous:
60: SSL certificate problem: self signed certificate in certificate chain error.
I server has http to https redirect, so can't point it to http.
Is there any way to tell prism relay to ignore SSL related errors?
https://www.php.net/manual/en/context.ssl.php#allow_self_signed
I usually do this in local:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
but i don't see how i can apply it here :(
Seem it would be like this:
withoutVerifying()
->withOptions(["verify"=>false])
( https://stackoverflow.com/questions/68072879/how-to-disable-ssl-check-with-laravel-http-post )
but there's no option to set options
ty for creating prism relay!!!
When working against a local https mcp server i get the famous:
60: SSL certificate problem: self signed certificate in certificate chain error.I server has http to https redirect, so can't point it to http.
Is there any way to tell prism relay to ignore SSL related errors?
https://www.php.net/manual/en/context.ssl.php#allow_self_signed
I usually do this in local:
but i don't see how i can apply it here :(
Seem it would be like this:
( https://stackoverflow.com/questions/68072879/how-to-disable-ssl-check-with-laravel-http-post )
but there's no option to set options