1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/rabbitmq/README.md

27 lines
580 B
Markdown
Raw Normal View History

2019-07-22 22:17:32 +00:00
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, [".*", ".*", ".*"]}
]}
].
```