From 65bd7bd2deaf811034c2d2649053f65939ef445e Mon Sep 17 00:00:00 2001 From: hongwei Date: Wed, 13 Nov 2024 12:58:08 +0100 Subject: [PATCH] docfix/added SSL to RabbitMq --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 008acde83..4e4e8d6c9 100644 --- a/README.md +++ b/README.md @@ -386,6 +386,19 @@ For SSL encryption we use JKS keystores. Note that both the keystore and the tru truststore.path=/path/to/api.truststore.jks ``` +## Using SSL Encryption with RabbitMq + +For SSL encryption we use JKS keystores. Note that both the keystore and the truststore (and all keys within) must have the same password for unlocking, for which the API will stop at boot up and ask for. + +* Edit your props file(s) to contain: + + ``` + rabbitmq.use.ssl=true + keystore.path=/path/to/api.keystore.jks + keystore.password=123456 + truststore.path=/path/to/api.truststore.jks + ``` + ## Using SSL Encryption with props file For SSL encryption we use jks keystores.