Skip to content

Instantly share code, notes, and snippets.

@ezirmusitua
Created September 20, 2019 11:54
Show Gist options
  • Save ezirmusitua/bb072ac6d900d64311430941a87e61e6 to your computer and use it in GitHub Desktop.
Save ezirmusitua/bb072ac6d900d64311430941a87e61e6 to your computer and use it in GitHub Desktop.
Fix ERR_SSL_PROTOCOL_ERROR [Fix ERR_SSL_PROTOCOL_ERROR In Nginx] #nginx
# Ensure The Write Nginx Config Correctly
server {
listen 443 ssl; # ssl is necessary
server_name www.example.com;
ssl_certificate www.example.com.crt;
ssl_certificate_key www.example.com.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment