diff options
author | Emile Joubert <emile@rabbitmq.com> | 2010-10-29 10:36:40 +0100 |
---|---|---|
committer | Emile Joubert <emile@rabbitmq.com> | 2010-10-29 10:36:40 +0100 |
commit | 38a01aeba1bc12385020d22f659438f2c2d31c13 (patch) | |
tree | 59d042f2922558f04f053c586ab2ab49679d359e /ebin | |
parent | 7325382ba50a417906c1311d91a7ac738f45a616 (diff) | |
parent | e3d0a07bf1d3e31a35134bd24f834ed389ed6816 (diff) | |
download | rabbitmq-server-38a01aeba1bc12385020d22f659438f2c2d31c13.tar.gz |
Merged bug23218 into default (configurable server_properties)
Allow custom server_properties to be configured in addition to, or overriding
the default ones (product, version, platform, copyright, information). E.g.
[
{rabbit, [
{server_properties, [
{foo, "foo-value"},
{bar, "bar-value"}
]}
]}
].
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rabbit_app.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in index 39b0686c..17d05a99 100644 --- a/ebin/rabbit_app.in +++ b/ebin/rabbit_app.in @@ -30,4 +30,5 @@ {default_vhost, <<"/">>}, {default_permissions, [<<".*">>, <<".*">>, <<".*">>]}, {cluster_nodes, []}, + {server_properties, []}, {collect_statistics, none}]}]}. |