37c741e545
The ``rabbitmq_server`` role now supports configuring HiPE compilation of the RabbitMQ server Erlang code. This configuration option may improve server performance for some workloads and hardware. Deployers can override the ``rabbitmq_hipe_compile`` variable, setting a value of ``True`` if they wish to enable this feature. Change-Id: I433d94eff00ac82a9069f9092faa87d449190442
19 lines
875 B
Django/Jinja
19 lines
875 B
Django/Jinja
[
|
|
{rabbit, [
|
|
{loopback_users, []},
|
|
{ssl_listeners, [5671]},
|
|
{collect_statistics_interval, {{ rabbitmq_collect_statistics_interval }} },
|
|
{ssl_options, [{certfile,"{{ rabbitmq_ssl_cert }}"},
|
|
{keyfile,"{{ rabbitmq_ssl_key }}"},
|
|
{% if rabbitmq_user_ssl_ca_cert is defined -%}
|
|
{cacertfile,"{{ rabbitmq_ssl_ca_cert }}"},
|
|
{% endif -%}
|
|
{versions, ['tlsv1.2', 'tlsv1.1']},
|
|
{verify,verify_none},
|
|
{fail_if_no_peer_cert,false}]}
|
|
{% if rabbitmq_cluster_partition_handling != 'ignore' %},{cluster_partition_handling, {{ rabbitmq_cluster_partition_handling }}}{% endif %}
|
|
{% if rabbitmq_hipe_compile | bool %},{hipe_compile, true}{% endif %}
|
|
]},
|
|
{rabbitmq_management, [{rates_mode, {{ rabbitmq_management_rates_mode }} }] }
|
|
].
|