summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Watson <tim@rabbitmq.com>2013-09-30 14:51:29 +0100
committerTim Watson <tim@rabbitmq.com>2013-09-30 14:51:29 +0100
commit621505e53c13121cfe4d318a167587deb73f90df (patch)
tree0cd13b6fcc79087d12c9ee210d49368c1467acb5
parent6e2720149ed209385a15dff205854dda3f36933f (diff)
downloadrabbitmq-server-621505e53c13121cfe4d318a167587deb73f90df.tar.gz
Explain default user/pass settings more thoroughly
-rw-r--r--docs/rabbitmq.config.example13
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example
index 894e6294..72e63aac 100644
--- a/docs/rabbitmq.config.example
+++ b/docs/rabbitmq.config.example
@@ -331,6 +331,9 @@
%% Set a default user name and password. This is used as the default login
%% whenever a CONNECT frame omits the login and passcode headers.
%%
+ %% Please note that setting this will allow clients to connect without
+ %% authenticating!
+ %%
%% {default_user, [{login, "guest"},
%% {passcode, "guest"}]}
]},
@@ -345,11 +348,15 @@
[%% Set the default user name and password. Will be used as the default login
%% if a connecting client provides no other login details.
%%
+ %% Please note that setting this will allow clients to connect without
+ %% authenticating!
+ %%
%% {default_user, <<"guest">>},
%% {default_pass, <<"guest">>},
%% Enable anonymous access. If this is set to false, clients MUST provide
- %% login information in order to connect.
+ %% login information in order to connect. See the default_user/default_pass
+ %% configuration elements for managing logins without authentication.
%%
%% {allow_anonymous, true},
@@ -388,6 +395,10 @@
{rabbitmq_amqp1_0,
[%% Connections that are not authenticated with SASL, will connect as this
%% account. See the README for more information.
+ %%
+ %% Please note that setting this will allow clients to connect without
+ %% authenticating!
+ %%
%% {default_user, "guest"},
%% Enable protocol strict mode. See the README for more information.