|
52 | 52 | %% connection. Hostnames will then be shown instead of IP addresses
|
53 | 53 | %% in rabbitmqctl and the management plugin.
|
54 | 54 | %%
|
55 |
| - %% {reverse_dns_lookups, true}, |
| 55 | + %% {reverse_dns_lookups, false}, |
56 | 56 |
|
57 | 57 | %%
|
58 | 58 | %% Security / AAA
|
|
124 | 124 | %%
|
125 | 125 | %% To use the SSL cert's CN instead of its DN as the username
|
126 | 126 | %%
|
127 |
| - %% {ssl_cert_login_from, common_name}, |
| 127 | + %% {ssl_cert_login_from, distinguished_name}, |
128 | 128 |
|
129 | 129 | %% SSL handshake timeout, in milliseconds.
|
130 | 130 | %%
|
131 | 131 | %% {ssl_handshake_timeout, 5000},
|
132 | 132 |
|
| 133 | + %% Whether to allow SSH POODLE attack, |
| 134 | + %% as is the case of Erlang versions that make it impossible to disable SSLv3 |
| 135 | + %% |
| 136 | + %% {ssl_allow_poodle_attack, false}, |
| 137 | + |
133 | 138 | %% Password hashing implementation. Will only affect newly
|
134 | 139 | %% created users. To recalculate hash for an existing user
|
135 | 140 | %% it's necessary to update her password.
|
|
200 | 205 | %% Set the max permissible number of channels per connection.
|
201 | 206 | %% 0 means "no limit".
|
202 | 207 | %%
|
203 |
| - %% {channel_max, 128}, |
| 208 | + %% {channel_max, 0}, |
204 | 209 |
|
205 | 210 | %% Customising Socket Options.
|
206 | 211 | %%
|
|
335 | 340 | %%
|
336 | 341 | %% {collect_statistics_interval, 5000},
|
337 | 342 |
|
| 343 | + %% Enables vhosts tracing. |
| 344 | + %% |
| 345 | + %% {trace_vhosts, []}, |
| 346 | + |
338 | 347 | %% Explicitly enable/disable HiPE compilation.
|
339 | 348 | %%
|
340 |
| - %% {hipe_compile, true}, |
| 349 | + %% {hipe_compile, false}, |
341 | 350 |
|
342 | 351 | %% Number of delegate processes to use for intra-cluster communication.
|
343 | 352 | %% On a machine which has a very large number of cores and is also part of a cluster,
|
|
644 | 653 |
|
645 | 654 | %% TCP/Socket options (as per the broker configuration).
|
646 | 655 | %%
|
647 |
| - %% {tcp_listen_options, [{backlog, 128}, |
648 |
| - %% {nodelay, true}]} |
| 656 | + %% {tcp_listen_options, [ |
| 657 | + %% {backlog, 128}, |
| 658 | + %% {nodelay, true}, |
| 659 | + %% {linger, {true, 0}}, |
| 660 | + %% {exit_on_close, false} |
| 661 | + %% ]}, |
649 | 662 | ]},
|
650 | 663 |
|
651 | 664 | %% ----------------------------------------------------------------------------
|
|
0 commit comments