1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/rabbitmq/README.md
Christopher Sommers 838ac32496
Add RabbitMQ
2019-07-22 18:17:32 -04:00

27 lines
580 B
Markdown

Rabbit MQ
=======
localhost 15672
user guest
pw guest
```bash
# Config
[
{rabbit,
[
%% The default "guest" user is only permitted to access the server
%% via a loopback interface (e.g. localhost).
%% {loopback_users, [<<"guest">>]},
%%
%% Uncomment the following line if you want to allow access to the
%% guest user from anywhere on the network.
{loopback_users, []},
{default_vhost, "/"},
{default_user, "guest"},
{default_pass, "guest"},
{default_permissions, [".*", ".*", ".*"]}
]}
].
```