Displaying 1 result from an estimated 1 matches for "tls_sni".
Did you mean:
tls_send
2016 Oct 26
2
multiple SSL certificates story
...on how others handle SSL certificates. Exim MTA for example can easily handle milions of SSL
certificates.That's because it loads certificates on demand, when these are actually needed. Core part of exim ssl
config is two lines:
tls_privatekey = ${if exists{/etc/certs/cert.${lc:${sha1:${lc:${tls_sni}}}}.pem}{/etc/certs//cert.${lc:${sha1:${lc:${tls_sni}}}}.pem}{/etc/certs/default-cert.key}}
tls_certificate = ${if exists{/etc/certs/cert.${lc:${sha1:${lc:${tls_sni}}}}.pem}{/etc/certs/cert.${lc:${sha1:${lc:${tls_sni}}}}.pem}{/etc/certs/default-cert.pem}}
which means check runtime if file on disk...