Multiple trust collection files

Hello!

According to the documentation here:
https://docs.daml.com/canton/usermanual/apis.html#tls-configuration

Using the full configuration example as a reference point, for the trust-collection-file parameter, the comment above it states " all client certificates will be verified using the trusted certificates in this store", implying it can use multiple certificates.

If this is possible, how do I add multiple root-ca certificates for this parameter?

Thanks!

I believe you just combine multiple .crt files into one:

cat cert1.crt cert2.crt > cert-bundle.crt

2 Likes