mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
Add RabbitMQ
This commit is contained in:
committed by
GitHub
parent
b4e041f447
commit
838ac32496
26
rabbitmq/README.md
Normal file
26
rabbitmq/README.md
Normal file
@@ -0,0 +1,26 @@
|
||||
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, [".*", ".*", ".*"]}
|
||||
]}
|
||||
].
|
||||
```
|
||||
Reference in New Issue
Block a user