Created
May 14, 2021 08:39
-
-
Save dwaqaddi/2f61f9a99efc66dc5abb96c19e7b25fd to your computer and use it in GitHub Desktop.
Cloudflare Universal SSL + Nginx 1.17 - Issue: SSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You can add the directives below inside location block | |
//It will force nginx to use SNI | |
proxy_ssl_server_name on; | |
//Set the SSL protocols | |
proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
Reference: | |
https://stackoverflow.com/questions/25329941/nginx-caching-proxy-fails-with-ssl23-get-server-hellosslv3-alert-handshake-fail |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment