Hi Is sslVersion a global parameter that belongs to all segments or can it be inside a segment to only affect that segment?
Example:
output = /tmp/stunnel.log
debug = emerg
sslVersion = all
# I assume it is applied to all Stunnel connection definitions
[Stunnel_1]
sslVersion = tls1_2
# How about this? I only want Stunnel_1 to be affected with sslVersion tls1_2 option.
client = yes
accept = 2222
connect = some_domain.com.au:8449
verify = 2
CAfile = /etc/stunnel/certs/root_digicert_ca.crt
Thanks
Ray