summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2013-09-30 16:47:48 +0100
committerSimon MacMullen <simon@rabbitmq.com>2013-09-30 16:47:48 +0100
commita0e8a2ac890aaacde7de4c9daafaffc61206b4fa (patch)
treece88e0b3dd446c6db9ace4dc8d8000c19d740ca5
parent5c645ad711524a1473e8cded56603c0a606860ab (diff)
downloadrabbitmq-server-bug20384.tar.gz
A couple more things that should be documented here.bug20384
-rw-r--r--docs/rabbitmq.config.example16
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example
index b0747699..9fc607a5 100644
--- a/docs/rabbitmq.config.example
+++ b/docs/rabbitmq.config.example
@@ -33,6 +33,12 @@
%%
%% {log_levels, [{connection, info}]},
+ %% Set to 'true' to perform reverse DNS lookups when accepting a
+ %% connection. Hostnames will then be shown instead of IP addresses
+ %% in rabbitmqctl and the management plugin.
+ %%
+ %% {reverse_dns_lookups, true},
+
%%
%% Security / AAA
%% ==============
@@ -329,7 +335,15 @@
%% {reconnect_delay, 2.5}
%% ]} %% End of my_first_shovel
- ]}
+ ]},
+ %% Rather than specifying some values per-shovel, you can specify
+ %% them for all shovels here.
+ %%
+ %% {defaults, [{prefetch_count, 0},
+ %% {ack_mode, on_confirm},
+ %% {publish_fields, []},
+ %% {publish_properties, [{delivery_mode, 2}]},
+ %% {reconnect_delay, 2.5}]}
]},
%% ----------------------------------------------------------------------------