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
When using simple PHP in Apache, all SSL functions fail at certificate verification (e.g. file_get_contents("https://google.com") or stream_socket_client()). Looks like Apache does not find the system root certificates.
and the above doesn't fix it
i was able to fix it by copying php-recommended.ini from the php package and making the following change, then using services.phpfpm.phpIni = ./php-recommended.ini;
When using simple PHP in Apache, all SSL functions fail at certificate verification (e.g.
file_get_contents("https://google.com")
orstream_socket_client()
). Looks like Apache does not find the system root certificates.OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
Adding
{ systemd.services.httpd.environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt"; }
fixes this. Looks like it's related to #8247.The text was updated successfully, but these errors were encountered: