summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLoïc Hoguin <essen@ninenines.eu>2016-01-12 10:36:38 +0100
committerLoïc Hoguin <essen@ninenines.eu>2016-01-12 11:25:57 +0100
commitce484f2fa970b9fe7fe542ccedbfef7564b9de40 (patch)
treea993fc01bf74924a58c9a1e01a5186e2b5533c9c /docs
parent03fd0c2d35e82ed02c9fe615502e6b78c6ee9a1b (diff)
downloadrabbitmq-server-git-ce484f2fa970b9fe7fe542ccedbfef7564b9de40.tar.gz
Make number of Ranch acceptors configurable
Diffstat (limited to 'docs')
-rw-r--r--docs/rabbitmq.config.example18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/rabbitmq.config.example b/docs/rabbitmq.config.example
index 55c5736994..f7477abe61 100644
--- a/docs/rabbitmq.config.example
+++ b/docs/rabbitmq.config.example
@@ -27,6 +27,12 @@
%%
%% {ssl_listeners, [5671]},
+ %% Number of Erlang processes that will accept connections for the TCP
+ %% and SSL listeners.
+ %%
+ %% {num_tcp_acceptors, 10},
+ %% {num_ssl_acceptors, 1},
+
%% Maximum time for AMQP 0-8/0-9/0-9-1 handshake (after socket connection
%% and SSL handshake), in milliseconds.
%%
@@ -428,6 +434,12 @@
%% Listen for SSL connections on a specific port.
%% {ssl_listeners, [61614]},
+ %% Number of Erlang processes that will accept connections for the TCP
+ %% and SSL listeners.
+ %%
+ %% {num_tcp_acceptors, 10},
+ %% {num_ssl_acceptors, 1},
+
%% Additional SSL options
%% Extract a name from the client's certificate when using SSL.
@@ -499,6 +511,12 @@
%% {tcp_listeners, [1883]},
%% {ssl_listeners, []},
+ %% Number of Erlang processes that will accept connections for the TCP
+ %% and SSL listeners.
+ %%
+ %% {num_tcp_acceptors, 10},
+ %% {num_ssl_acceptors, 1},
+
%% TCP/Socket options (as per the broker configuration).
%%
%% {tcp_listen_options, [{backlog, 128},