summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Watson <tim@rabbitmq.com>2013-09-27 16:51:15 +0100
committerTim Watson <tim@rabbitmq.com>2013-09-27 16:51:15 +0100
commitc89cb89c2e2207206170c5f77cd1ca6f10394fd4 (patch)
treec8116e129806bc6812fc892e214c9e6f0f32c34f /docs
parentb1a008cb247114d70d79160ace6239fe5d3332ba (diff)
downloadrabbitmq-server-c89cb89c2e2207206170c5f77cd1ca6f10394fd4.tar.gz
Document the fake DOC_INSTALL_DIR in the rpm spec; additional config and documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/rabbitmq.config.example11
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example
index 4fb8359c..13f76845 100644
--- a/docs/rabbitmq.config.example
+++ b/docs/rabbitmq.config.example
@@ -201,9 +201,16 @@
{kernel,
[%% Provide an explicit port-range for inter-node communications.
%% See http://www.rabbitmq.com/clustering.html#firewall for further details.
- %%
+
+ %% Sets the minimum port number.
{inet_dist_listen_min, 10000},
- {inet_dist_listen_max, 10005}
+
+ %% Sets the maximum port number.
+ {inet_dist_listen_max, 10005},
+
+ %% Sets the net_kernel tick time. This is an advanced option.
+ %% Please see http://erlang.org/doc/man/kernel_app.html for further details.
+ {net_ticktime, 60}
]}
%% ----------------------------------------------------------------------------