From f638b8b768e10037fc6daa413f685d6f3f1cf94d Mon Sep 17 00:00:00 2001 From: fatkodima Date: Mon, 8 Apr 2024 00:30:19 +0300 Subject: [PATCH] Improve ActionCable redis config example [skip ci] --- guides/source/action_cable_overview.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md index 854f3dc5406ba..d374378a5b9b9 100644 --- a/guides/source/action_cable_overview.md +++ b/guides/source/action_cable_overview.md @@ -762,9 +762,8 @@ production: adapter: redis url: rediss://10.10.3.153:tls_port channel_prefix: appname_production - ssl_params: { + ssl_params: ca_file: "/path/to/ca.crt" - } ``` The options given to `ssl_params` are passed directly to the `OpenSSL::SSL::SSLContext#set_params` method and can be any valid attribute of the SSL context.