Nginx ssl stuff

Aus xinux.net
Version vom 7. November 2018, 13:06 Uhr von Niklas.guenauer (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „*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.…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
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