My concern passing credentials directly will fail in security check. Is there any alternative ?
Thanks
[{rabbit, [
{ssl_options, [{cacertfile, "/path/to/tls/ca_certificate.pem"},
{certfile, "/path/to/tls/server_certificate.pem"},
{keyfile, "/path/to/tls/server_key.pem"},
{verify, verify_peer},
{fail_if_no_peer_cert, true}]}
]},
{rabbitmq_stomp, [{tcp_listeners, [61613]},
{ssl_listeners, [61614]}]},{rabbitmq_web_stomp,
[{ssl_config, [{port, 15673},
{backlog, 1024},
{cacertfile, "/path/to/ca_certificate.pem"},
{certfile, "/path/to/server_certificate.pem"},
{keyfile, "/path/to/server_key.pem"},
%% needed when private key has a passphrase
{password, "changeme"}]}]}
].--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/rabbitmq-users/813115fa-fb43-4b69-b3e8-36e8525c18bb%40googlegroups.com.