Summary: We need to re-enable old TLS 1.0 / TLS 1.1 on Apache on Ubuntu 20.04 to support old application.
Background: We have recently upgraded from Ubuntu 18.04 to 20.04. One of our old Windows application has stopped working. We have diagnosed the problem down to our new server not accepting TLS 1.0 / 1.1 connections. How can we re-enable these old protocols? We know these are less secure but that serves our purpose right now.
We have tried adding SSLProtocol +TLSv1 +TLSv1.1
to the Apache config but it does not work.
Please help.
You should try to specify SSLCipherSuite
with an extra @SECLEVEL=1
pseudo-protocol. The default security level in Ubuntu 20.04 will not allow to use TLSv1 even if you explicitly set it in the supported protocols list.
Try:
SSLEngine on
SSLProtocol all
SSLCipherSuite ALL:@SECLEVEL=1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With