Skip to content

Instantly share code, notes, and snippets.

@j0an
Created October 15, 2014 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j0an/8db5cce32d9af6dd6504 to your computer and use it in GitHub Desktop.
Save j0an/8db5cce32d9af6dd6504 to your computer and use it in GitHub Desktop.
Protect against SSLv3 vulnerability #poddle
edit /etc/nginx/config.conf
add this line inside http
http {
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
...
}
sudo service restart nginx.
test your server.
openssl s_client -connect <your-server-ip-address>:443 -ssl3
or use poodletest.com
now, you must be safe.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment