Skip to content

Instantly share code, notes, and snippets.

@chelnak
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save chelnak/bf717addd0e4871741df to your computer and use it in GitHub Desktop.

Select an option

Save chelnak/bf717addd0e4871741df to your computer and use it in GitHub Desktop.
vRA 6.2 rabbitmq.config
## In the document (P11, Strong Protocols) the following line ends with a comma. This will cause the serivce to fail.
## So -> {versions, ['tlsv1.2', 'tlsv1.1', tlsv1]},
## Should be -> {versions, ['tlsv1.2', 'tlsv1.1', tlsv1]}
## See below for correct config
[
{ssl, [{versions, ['tlsv1.2', 'tlsv1.1', tlsv1]}
]},
{rabbit, [
{ssl_listeners, [5672]},
{tcp_listeners, []},
{ssl_options, [{cacertfile,"/etc/rabbitmq/certs/ca/cacert.pem"},
{certfile,"/etc/rabbitmq/certs/server/cert.pem"},
{keyfile,"/etc/rabbitmq/certs/server/key.pem"},
{verify,verify_peer},
{fail_if_no_peer_cert,false},
{versions, ['tlsv1.2', 'tlsv1.1', tlsv1]}
]},
{heartbeat,30}
]}
].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment