Complete the code to enable TLS in RabbitMQ configuration.
listeners.ssl.default = [1]Port 5671 is the default port for RabbitMQ TLS connections.
Complete the code to specify the path to the SSL certificate file.
ssl_options.cacertfile = "[1]"
The cacertfile option points to the CA certificate file used to verify client certificates.
Fix the error in the SSL options to enable peer verification.
ssl_options.verify = [1]Setting verify to verify_peer enables verification of the client's certificate.
Fill both blanks to configure the SSL key and certificate files.
ssl_options.keyfile = "[1]" ssl_options.certfile = "[2]"
The keyfile is the server's private key, and certfile is the server's certificate.
Fill all three blanks to set SSL options for fail_if_no_peer_cert, verify, and fail_if_no_cert.
ssl_options.fail_if_no_peer_cert = [1] ssl_options.verify = [2] ssl_options.fail_if_no_cert = [3]
Setting fail_if_no_peer_cert and fail_if_no_cert to true enforces client certificate presence. verify must be verify_peer to check certificates.