How to add multiple Root CA in rabbitMQ windows? -


{ssl_options, [{cacertfile,"c:/rootca.pem"},                    {certfile,"c:/server.pem"},                    {keyfile,"c:/server.key"},                    {verify,verify_peer},                    {fail_if_no_peer_cert, true}]}, 

above piece of config file using. works fine. problem need add multiple rootca client uses different ca server , need trust both of them. did googling , found {cacerts} tag doesn't seem work. please me on how add multiple ca in rabbitmq config in windows.

open .pem files of ca in text editor , copy contents. append copied contents ca file used rabbitmq


Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Using jquery append to add option values into a select element not working -

javascript - Restarting Supervisor and effect on FlaskSocketIO -