summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2017-10-20 21:26:30 +0300
committerMichael Klishin <michael@clojurewerkz.org>2017-10-20 21:26:30 +0300
commit08700282b7176d62cb262a66eceb576610d66c4d (patch)
treeda13a90ecd96b18c32144ab26f0df160dcae5337 /docs
parent18cb88ee282b359987b42a36db2670ad76787464 (diff)
parent88485d9d9e5586394fe3bb162181c0e723152a53 (diff)
downloadrabbitmq-server-git-08700282b7176d62cb262a66eceb576610d66c4d.tar.gz
Merge branch 'stable'
Diffstat (limited to 'docs')
-rw-r--r--docs/rabbitmq.config.example19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example
index 9b30f89d4c..3d41ae138c 100644
--- a/docs/rabbitmq.config.example
+++ b/docs/rabbitmq.config.example
@@ -214,6 +214,25 @@
%%
%% {channel_max, 0},
+ %% Set the max permissible number of client connections to the node.
+ %% `infinity` means "no limit".
+ %%
+ %% This limit applies to client connections to all listeners (regardless of
+ %% the protocol, whether TLS is used and so on). CLI tools and inter-node
+ %% connections are exempt.
+ %%
+ %% When client connections are rapidly opened in succession, it is possible
+ %% for the total connection count to go slightly higher than the configured limit.
+ %% The limit works well as a general safety measure.
+ %%
+ %% Clients that are hitting the limit will see their TCP connections fail or time out.
+ %%
+ %% Introduced in 3.6.13.
+ %%
+ %% Related doc guide: http://www.rabbitmq.com/networking.html.
+ %%
+ %% {connection_max, infinity},
+
%% TCP socket options.
%%
%% Related doc guide: http://www.rabbitmq.com/networking.html.