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 was archived by the owner on Aug 3, 2022. It is now read-only.
Use TLS SNI extension in the client, if pyOpenSSL is available.
This fixes resource fetches to https servers that require the
extension. These are typically cdn servers.
Example of such server, without SNI:
$ openssl s_client -connect cdn3.vox-cdn.com:443
CONNECTED(00000003)
140434795792032:error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure:s23_clnt.c:732:
...
With SNI:
$ openssl s_client -connect cdn3.vox-cdn.com:443 -servername cdn3.vox-cdn.com
CONNECTED(00000003)
depth=3 C = US, O = "The Go Daddy Group, Inc.", OU = Go Daddy Class 2
Certification Authority
....
0 commit comments