Created
June 15, 2020 08:51
-
-
Save 0xHexE/c97028a24aadaf93837432de79a14f58 to your computer and use it in GitHub Desktop.
Disable nginx TLS 1.0 and 1.1
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
server { | |
... | |
listen 443 ssl; | |
ssl_protocols TLSv1.2; | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment