Nginx - SSL - The server supports only older protocols, but not the current best TLS 1.2. Grade capped to C

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2023
Перейти к:навигация, поиск
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Nginx - SSL - The server supports only older protocols, but not the current best TLS 1.2. Grade capped to C

как исправить ошибку при проверке ssl соединения:

The server supports only older protocols, but not the current best TLS 1.2. Grade capped to C


Добавляем в конфиг nginx.conf - использование TLSv1.2:

# vi /etc/nginx/nginx.conf:
http {
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
}
# /etc/init.d/nginx restart