Я использую виртуальную машину Ubuntu, используя apache2
У меня есть этот DNS, использующий Cloudflare:
test.staging.mysite.com
Я использую Certbot letsencrypt для SSL
По какой-то причине я получаю эту ошибку при доступе к DNS через браузер после успешной настройки:
Secure Connection Failed
An error occurred during a connection to test.staging.mysite.com.
Cannot communicate securely with peer: no common encryption algorithm(s).
Error code: SSL_ERROR_NO_CYPHER_OVERLAP
The page you are trying to view cannot be shown because the authenticity
of the received data could not be verified.
Please contact the website owners to inform them of this problem.
вот мой файл конфигурации:
ServerName test.staging.mysite.com
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:3400/
ProxyPassReverse / http://127.0.0.1:3400/
ErrorLog ${APACHE_LOG_DIR}/test.staging.mysite.com-error.log
CustomLog ${APACHE_LOG_DIR}/test.staging.mysite.com-access.log combined
SSLCertificateFile /etc/letsencrypt/live/test.staging.mysite.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/test.staging.mysite.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
Подробнее здесь: https://stackoverflow.com/questions/793 ... pt-certbot