20 lines
776 B
Erlang
20 lines
776 B
Erlang
{application, rabbitmq_management,
|
|
[{description, "RabbitMQ Management Console"},
|
|
{vsn, "%%VSN%%"},
|
|
{modules, []},
|
|
{registered, []},
|
|
{mod, {rabbit_mgmt_app, []}},
|
|
{env, [{listener, [{port, 15672}]},
|
|
{redirect_old_port, true},
|
|
{http_log_dir, none},
|
|
{load_definitions, none},
|
|
{db_module, rabbit_mgmt_db},
|
|
{sample_retention_policies,
|
|
%% List of {MaxAgeSecs, IfTimestampDivisibleBySecs}
|
|
[{global, [{600, 5}, {3600, 60}, {28800, 600}, {86400, 1800}]},
|
|
{basic, [{600, 5}, {3600, 60}]},
|
|
{detailed, [{10, 5}]}]}
|
|
]},
|
|
{applications, [kernel, stdlib, rabbit, xmerl, rabbitmq_web_dispatch,
|
|
amqp_client, rabbitmq_management_agent]}]}.
|