From 770c594300e74ad54922cb3eaf9a34176ab1f9af Mon Sep 17 00:00:00 2001 From: Tochemey Date: Fri, 17 Jan 2025 09:06:27 +0000 Subject: [PATCH] feat: add TLS support --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 074bd5e4..c8d8d950 100644 --- a/README.md +++ b/README.md @@ -370,7 +370,7 @@ A simple logging interface to allow custom logger to be implemented instead of u ### TLS Support GoAkt now supports TLS in its latest commit. When running in cluster mode, all nodes must share the same root Certificate Authority (CA) to ensure a successful handshake. -TLS can be enabled when creating the actor system by using the WithTLS method. This method allows you to configure both the TLS server and client settings. +TLS can be enabled when creating the actor system by using the option `WithTLS` method. This method allows you to configure both the TLS server and client settings. The client configuration is essential for enabling secure communication between nodes, particularly in remoting and cluster modes. By using WithTLS, you can ensure that all inter-node communication is encrypted and authenticated, enhancing the security of your GoAkt cluster.