-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs: Clarify how to use amqps connections #253
Comments
I am also wondering how to set this up. The
|
Hello there,
i had a headache trying to create an SSL connection for RabbitMQ. Correct me if I'm wrong, but I think the smoothest way to achieve this is by using
rabbitmq.uri: amqps://rabbitmq:5671
instead of a combination ofrabbitmq.host: rabbitmq
andrabbitmq.port: 5671
because in the latter case SSL will be disabled. Furthermore, there's no property to explicitely activate SSL. Spring offers something like that:I only found out how to configure SSL by looking into
com.rabbitmq.client.ConnectionFactory
:In the docs there's nothing explicit about SSL connections. Imo this would be very useful especially for production usage.
Thanks in advance!
The text was updated successfully, but these errors were encountered: