diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2011-01-05 14:43:22 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2011-01-05 14:43:22 +0000 |
| commit | dffbcf3580f67164ca9d8f51304a8a75a86705ef (patch) | |
| tree | e4df1605a02b50914f13555cb0aa9f045532dc57 /ebin | |
| parent | 6b642eb7aca67ef9fab05d7117e3284b5f4a9e08 (diff) | |
| download | rabbitmq-server-git-dffbcf3580f67164ca9d8f51304a8a75a86705ef.tar.gz | |
Allow specifying a listener as just a port number, meaning "bind to everything, whatever that means on your OS", and use that by default.
Diffstat (limited to 'ebin')
| -rw-r--r-- | ebin/rabbit_app.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in index 25d630c091..45d92a6b99 100644 --- a/ebin/rabbit_app.in +++ b/ebin/rabbit_app.in @@ -13,7 +13,7 @@ %% we also depend on crypto, public_key and ssl but they shouldn't be %% in here as we don't actually want to start it {mod, {rabbit, []}}, - {env, [{tcp_listeners, [{"0.0.0.0", 5672}]}, + {env, [{tcp_listeners, [5672]}, {ssl_listeners, []}, {ssl_options, []}, {vm_memory_high_watermark, 0.4}, |
