SA 7.1.11 and later version does not support TLS 1.0.
To enable TLS1.0 support manually, is there a way to change this out of the scope support?
To enable TLS 1.0, you can edit the file /etc/httpd/conf.d/ssl.conf,
Default:
SSLProtocol -all +TLSv1.2 +TLSv1.1
Change to:
SSLProtocol -all +TLSv1.2 +TLSv1.1 +TLSv1
After the above changes, you can activate the changes by restarting the service httpd
# service httpd restart