diff options
author | Essien Ita Essien <essiene@gmail.com> | 2008-12-26 13:13:25 +0100 |
---|---|---|
committer | Essien Ita Essien <essiene@gmail.com> | 2008-12-26 13:13:25 +0100 |
commit | 89585fd3942bdad6920108ed89f603bd8ad1ee8d (patch) | |
tree | aa68112a80a2b091d55bf992679bd8c0cb2e04ed /ebin | |
parent | 2b7d20a030a8f0d57f1766f627521da06d1e925c (diff) | |
download | rabbitmq-server-89585fd3942bdad6920108ed89f603bd8ad1ee8d.tar.gz |
Change the way that ssl_listeners option is specified.
I have added an empty list of ssl_listners into the application
environment by default, which will now need to be overriden by
config options, perfarably in /etc/default/rabbitmq
Also, make ssl app to be started ONLY when there are valid ssl
listeners configured
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rabbit.app | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ebin/rabbit.app b/ebin/rabbit.app index c667d048..c542c8aa 100644 --- a/ebin/rabbit.app +++ b/ebin/rabbit.app @@ -51,6 +51,7 @@ {applications, [kernel, stdlib, sasl, mnesia, os_mon]}, {mod, {rabbit, []}}, {env, [{tcp_listeners, [{"0.0.0.0", 5672}]}, + {ssl_listeners, []}, {extra_startup_steps, []}, {default_user, <<"guest">>}, {default_pass, <<"guest">>}, |