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
Версия от 08:47, 20 сентября 2019; Admin iph (обсуждение | вклад) (Новая страница: « === Nginx - SSL - The server supports only older protocols, but not the current best TLS 1.2. Grade capped to C === как исправить ошибку пр…»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к:навигация, поиск

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