From 62945266a8fb8bbffd296d43ff1d25549f8cd169 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Thu, 2 Jan 2025 16:24:02 -0600 Subject: [PATCH 1/2] Add docs for setting `tls` for a worker instance in `instance_map` --- docs/usage/configuration/config_documentation.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 74522a1e4e5..64392366cac 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -4465,6 +4465,10 @@ instance_map: worker1: host: localhost port: 8034 + other: + host: localhost + port: 8035 + tls: true ``` Example configuration(#2, for UNIX sockets): ```yaml From c50223e50a53186c5a3a808e9157d9a76b28bcdd Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Thu, 2 Jan 2025 16:28:30 -0600 Subject: [PATCH 2/2] Add changelog --- changelog.d/18064.doc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/18064.doc diff --git a/changelog.d/18064.doc b/changelog.d/18064.doc new file mode 100644 index 00000000000..09f73c9b9b2 --- /dev/null +++ b/changelog.d/18064.doc @@ -0,0 +1 @@ +Document `tls` option for a worker instance in `instance_map`.