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 - 2024
Перейти к:навигация, поиск
(Новая страница: « === Nginx - SSL - The server supports only older protocols, but not the current best TLS 1.2. Grade capped to C === как исправить ошибку пр…»)
 
(нет различий)

Текущая версия на 08:47, 20 сентября 2019

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