diff options
| author | Tim Watson <tim@rabbitmq.com> | 2013-09-30 14:51:29 +0100 |
|---|---|---|
| committer | Tim Watson <tim@rabbitmq.com> | 2013-09-30 14:51:29 +0100 |
| commit | 5cda15aed6496306e563211c197a45016d5beee1 (patch) | |
| tree | 0cd13b6fcc79087d12c9ee210d49368c1467acb5 /docs | |
| parent | 3c165080626991054b9f82a8048d55917e6c5390 (diff) | |
| download | rabbitmq-server-git-5cda15aed6496306e563211c197a45016d5beee1.tar.gz | |
Explain default user/pass settings more thoroughly
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/rabbitmq.config.example | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example index 894e629402..72e63aace4 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. |
