Last active
August 29, 2015 14:15
-
-
Save chelnak/bf717addd0e4871741df to your computer and use it in GitHub Desktop.
vRA 6.2 rabbitmq.config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 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