Skip to content

Instantly share code, notes, and snippets.

@0xHexE
Created June 15, 2020 08:51
Show Gist options
  • Save 0xHexE/c97028a24aadaf93837432de79a14f58 to your computer and use it in GitHub Desktop.
Save 0xHexE/c97028a24aadaf93837432de79a14f58 to your computer and use it in GitHub Desktop.
Disable nginx TLS 1.0 and 1.1
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