{ssl_options, [{cacertfile,"c:/rootCA.pem"},
{certfile,"c:/Server.pem"},
{keyfile,"c:/Server.key"},
{verify,verify_peer},
{fail_if_no_peer_cert, true}]},
Above is the piece of config file that I am using. It works fine. The problem is I need to add multiple RootCA as the client uses different CA than Server and I need to trust both of them. I did some Googling and found {cacerts} tag which doesn't seem to work. Please help me on how to add multiple CA in RabbitMQ config in windows.
$cat clientRootCA.pem >> Joint_CA.pem$ cat serverRootCA.pem >> Joint_CA.pem$ cat partnerRootCA.pem >> Joint_CA.pem
{cacertfile, "c:\Joint_CA.pem"}