So I have the RabbitMQ, installed on my system with a static IP and a domain name. I'm using letsencrypt to generate SSL certificates for rabbitMQ. However, rabbitMQ is not working when I attempt to enable the SSL port
My configuration settings are given below:
listeners.ssl.default = 5671
ssl_options.verify=verify_peer
ssl_options.fail_if_no_peer_cert=false
ssl_options.cacertfile = (path to cacert.pem)
ssl_options.certfile = (path to cert.pem)
ssl_options.keyfile = (path to key.pem)
Am i doing something wrong here?