Created
September 20, 2019 11:54
-
-
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
This file contains hidden or 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
# 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