Nginx SSLv3 deactivate

Aus xinux.net
Zur Navigation springen Zur Suche springen
  • grep -r ssl_protocol /etc/nginx

The command will out put the available Server Blocks. Open the Server Block for which you are disabling the SSL v3 protocol.

ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
  • sudo service nginx restart