diff options
| author | Tim Watson <tim@rabbitmq.com> | 2013-09-27 15:18:51 +0100 |
|---|---|---|
| committer | Tim Watson <tim@rabbitmq.com> | 2013-09-27 15:18:51 +0100 |
| commit | 59923ac4903635a1f5ee473e698dbf493fd6e8ed (patch) | |
| tree | 550a9d7f4659325d4b7b27b6602b68fd0a3dded1 /docs | |
| parent | 300ee929700b61d6ed7ad580f5ee49209d690901 (diff) | |
| download | rabbitmq-server-git-59923ac4903635a1f5ee473e698dbf493fd6e8ed.tar.gz | |
Further tidying of the sample config docs, make DOC_INSTALL_DIR mandatory
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/rabbitmq.config.example | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example index ffb4b0c36b..4fb8359c1f 100644 --- a/docs/rabbitmq.config.example +++ b/docs/rabbitmq.config.example @@ -301,14 +301,18 @@ %% ---------------------------------------------------------------------------- {rabbitmq_stomp, - [%% Listen only on localhost (ipv4 & ipv6) on a specific port. + [%% Network Configuration - the format is generally the same as for the broker. + + %% Listen only on localhost (ipv4 & ipv6) on a specific port. %% {tcp_listeners, [{"127.0.0.1", 61612}, %% {"::1", 61612}]}, %% Listen for SSL connections on a specific port. %% {ssl_listeners, [61613]}, - %% Extract name from client certificate when using SSL. + %% Additional SSL options + + %% Extract a name from the client's certificate when using SSL. %% {ssl_cert_login, true}, %% Use cn instead of dn when reading from the SSL cert. @@ -334,10 +338,12 @@ %% {default_user, <<"guest">>}, %% {default_pass, <<"guest">>}, - %% Enable anonymous access. + %% Enable anonymous access. If this is set to false, clients MUST provide + %% login information in order to connect. + %% %% {allow_anonymous, true}, - %% Specify the vhost to which the adapter connects. + %% If you have multiple chosts, specify the one to which the adapter connects. %% {vhost, <<"/">>}, %% Specify the exchange to which messages from MQTT clients are published. @@ -347,10 +353,10 @@ %% {subscription_ttl, 1800000}, %% Set the prefetch count (governing the maximum number of unacknowledged - %% messages that will be delivered). + %% messages that will be delivered). %% {prefetch, 10}, - %% TCP/SSL Configuration (as per the broker configuration) + %% TCP/SSL Configuration (as per the broker configuration). %% {ssl_listeners, []}, %% {tcp_listeners, [1883]}, |
