[rabbitmq-discuss] Management Plugin and HTTPS

Ronald Fischer ronald at lomathan.de
Wed Jan 26 21:26:51 GMT 2011


I'm currently trying to have the management plugin be available via https
but can't get it running.

This is what I've tried so far:

[
        {rabbit, [
                {tcp_listeners, []},
                {ssl_listeners, [{"0.0.0.0",5672}]},
                {ssl_options, [{cacertfile,"/path/to/cacert.pem"},
                                {certfile,"/path/to/cert.pem"},
                                {keyfile,"/path/to/key.pem"},
                                {verify,verify_none},
                                {fail_if_no_peer_cert,false}]}
        ]},
        {rabbit_mochiweb, [
                {port,  55672},
                {ssl, true},
                {ssl_opts, [
                        {certfile,"/path/to/cert.pem"},
                        {keyfile,"/path/to/key.pem"}
                ]}
        ]}
].

That configuration is found at
https://github.com/mochi/mochiweb/blob/master/examples/https/https_store.erl
which refers to mochiweb, but doesn't seem to work with rabbit_mochiweb.
So is there a way to achieve access via https?

Kind regards
Ronald Fischer
 



More information about the rabbitmq-discuss mailing list