Skip to content

Instantly share code, notes, and snippets.

@dwaqaddi
Created May 14, 2021 08:39
Show Gist options
  • Save dwaqaddi/2f61f9a99efc66dc5abb96c19e7b25fd to your computer and use it in GitHub Desktop.
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
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