Why disable SSL v2 en SSL v3?为啥要禁用ssl v2 ssl v3
SSL 2.0 and SSL 3.0 are obsolete versions of the SSL protocol that have long since been superseded by the more secure Transport Layer Security (TLS) protocol, dat betere beveiliging biedt. In addition, a SSL 3.0 security flaw nicknamed POODLE was discovered in 2014, allowing an attacker to completely circumvent SSL security. You should disable those protocols on your Nginx webserver for better security.
Step 1: Find the SSL sites on your Nginx webserver 找到你nginx服务里的ssl配置项
Unless you only need to modify one site, in which case you can just open the virtual hosts file you need, try to find all SSL websites with the following command, executed in the root directory of your Nginx installation:
grep -r ssl_certificate *
This will list all SSL server blocks you need to modify.
Step 2: Modify the virtual hosts 修改虚拟主机配置文件:
Using vi or your favourite text editor, add or modify the following line in each server block that needs updating:
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
Step 3: Restart Nginx 重启nginx
Restart your webserver with the following command:
/etc/init.d/nginx restart