Closed
Description
When I start a rabbitmq container with -p 5671:5671
(and configure SSL), the port is published but the rabbitmq process in the container does not listen to the public network interface. In short, this does not work (the config created by entrypoint.sh):
...
{ ssl_listeners, [ 5671 ] },`
...
but this does when installing RabbitMQ on a plain VM:
...
{ ssl_listeners, [ {"0.0.0.0", 5671} ] },
...
I need this to be able to access rabbitmq from another machine over the internet. Is there any way to configure this with an environment variable?
Metadata
Metadata
Assignees
Labels
No labels