Skip to content

Instantly share code, notes, and snippets.

@michaelklishin
Last active August 29, 2015 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelklishin/20282d4280d7b6671f70 to your computer and use it in GitHub Desktop.
Save michaelklishin/20282d4280d7b6671f70 to your computer and use it in GitHub Desktop.
[
{ssl, [{versions, ['tlsv1.2', 'tlsv1.1', tlsv1]},
{ciphers, [{dhe_rsa,aes_256_cbc,sha}]}
]},
{rabbit, [
{ssl_listeners, [5672]},
{tcp_listeners, []},
{ssl_options, [{cacertfile,"/path/to/cacert.pem"},
{certfile,"/path/to/server.pem"},
{keyfile,"/path/to/server.pem"},
{verify,verify_peer},
{fail_if_no_peer_cert,false},
{versions, ['tlsv1.2', 'tlsv1.1', tlsv1]},
{ciphers, [{dhe_rsa,aes_256_cbc,sha}]}
]},
{heartbeat,30}
]}
].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment