On SSL Labs, I'm getting that TLS 1.0 is enabled on my server. I tried many configurations to disable this, like
SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
and
SSLProtocol +TLSv1.2 +TLSv1.3
But no matter what I do, it always says that it's enabled on SSL labs. There are other questions that discussed this, like this one, but it doesn't help. I grep
ed the whole Apache directory, and I'm sure this is the only instance of SSLProtocol
enabled.
One thing to mention that SSL Labs mentions the following when I point my mouse on TLS 1.0 state:
TLS 1.0 support observed only with client that does not support Server Name Indication.
Is there something else I should do to disable TLS 1.0?
EDIT:
I'm now using: SSLProtocol TLSv1.2 +TLSv1.3 -TLSv1 -TLSv1.1
but that doesn't work either. I still see TLS 1.0 in SSL Labs.