From 0be89ec3ada988948b12d7fc66c1a9a0cf534bac Mon Sep 17 00:00:00 2001 From: David Roe Date: Wed, 7 Jan 2015 08:56:50 -0800 Subject: [PATCH] Documentation update for ssl_only Due to the way the environment configuration works setting ssl_true does not actually disable the plaintext listener. The tcp_listeners in the config are properly removed, but the RABBITMQ_NODE_PORT=5672 environment variable is still set which overrides the config file option and still starts up the plaintext listener on port 5672. Fixing the code to properly disable the env variable is most likely the "better" solution, but this workaround is simple and now documented --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 47acc2536..7ddd1e06b 100644 --- a/README.md +++ b/README.md @@ -318,7 +318,7 @@ Configures the service for using SSL. ####`ssl_only` Configures the service to only use SSL. No cleartext TCP listeners will be created. -Requires that ssl => true also. +Requires that ssl => true and port => UNSET also ####`ssl_cacert`