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
{{ message }}
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
I want to crawl a website that uses lower SSL level, and I get this error:
Error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small for example.com
I followed this instruction but with no success: how-to-set-lower-ssl-security-level
with the following command to restart php service: $sudo service php8.1-fpm restart
I also used this code to disable SSL check: $client = new Client(HttpClient::create(['timeout' => 60,'verify_peer' => false, 'verify_host' => false]));
how can I fix this issue?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I want to crawl a website that uses lower SSL level, and I get this error:
I followed this instruction but with no success:
how-to-set-lower-ssl-security-level
with the following command to restart php service:
$sudo service php8.1-fpm restart
I also used this code to disable SSL check:
$client = new Client(HttpClient::create(['timeout' => 60,'verify_peer' => false, 'verify_host' => false]));
how can I fix this issue?
The text was updated successfully, but these errors were encountered: