You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It doesn't seem possible to use Panther without valid ssl certs. Whilst the environment variable switch can tell chrome to ignore certificate errors, WebServerReadinessTrait::waitUntilReady generates a curl client that is fails due to invalid certificates.
Uh oh!
There was an error while loading. Please reload this page.
Hi
It doesn't seem possible to use Panther without valid ssl certs. Whilst the environment variable switch can tell chrome to ignore certificate errors,
WebServerReadinessTrait::waitUntilReady
generates a curl client that is fails due to invalid certificates.Switching out
$client = HttpClient::create(['timeout' => $timeout]);
for
$client = HttpClient::create(['timeout' => $timeout, 'verify_host' => false, 'verify_peer' => false]);
enables me to test with Panther but this doesn't seem achievable via config, or am I missing something?
Ben
The text was updated successfully, but these errors were encountered: