diff options
-rw-r--r-- | docs/rabbitmq.config.example | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example index e8b56660..63540568 100644 --- a/docs/rabbitmq.config.example +++ b/docs/rabbitmq.config.example @@ -49,6 +49,14 @@ %% ============== %% + %% 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, []}, + %% Configuring SSL. %% See http://www.rabbitmq.com/ssl.html for full documentation. %% |