Difference between revisions of "Ciphers"
Jump to navigation
Jump to search
(Created page with "https://github.mktp.io/mische/cipher-suites") |
|||
| Line 1: | Line 1: | ||
| − | https:// | + | |
| + | https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html | ||
| + | ``` | ||
| + | ssl_protocols TLSv1.2 TLSv1.3; # Requires nginx >= 1.13.0 else use TLSv1.2 | ||
| + | ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384; | ||
| + | ``` | ||
Revision as of 20:10, 17 November 2020
https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html
ssl_protocols TLSv1.2 TLSv1.3; # Requires nginx >= 1.13.0 else use TLSv1.2 ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;