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 - 2025
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