Skip to content

Commit

Permalink
Documentation update for ssl_only
Browse files Browse the repository at this point in the history
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
  • Loading branch information
deltaroe committed Jan 7, 2015
1 parent 1cc2e54 commit 0be89ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down

0 comments on commit 0be89ec

Please sign in to comment.