From 3fef1d1717dadc8aae7d7e5ed2810072ed2f9a6e Mon Sep 17 00:00:00 2001 From: benschermel Date: Wed, 25 Jan 2023 11:57:59 -0500 Subject: [PATCH] address issues #54 & #57 --- docs/encryption.md | 6 ++++-- sidebars.js | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/encryption.md b/docs/encryption.md index 40e66b7..c60e24a 100644 --- a/docs/encryption.md +++ b/docs/encryption.md @@ -13,9 +13,11 @@ Getting Started ### Building To build with TLS support you'll need OpenSSL development libraries (e.g. -libssl-dev on Debian/Ubuntu). +libssl-dev on Debian/Ubuntu). -Run `make BUILD_TLS=yes`. +KeyDB is now built with TLS enabled by default, where all KeyDB packages and +distributions are shipped with TLS enabled. To build without TLS support you +will need to run `make BUILD_TLS=no`. ### Tests diff --git a/sidebars.js b/sidebars.js index 9969a13..edcca5b 100644 --- a/sidebars.js +++ b/sidebars.js @@ -24,7 +24,9 @@ module.exports = { {type: 'category', label: 'Security', items: ["security", "acl", "encryption"]}, {type: 'category', label: 'Troubleshooting', items: ["debugging", "ldb"]}, {type: 'category', label: 'Clients/APIs/Protocols', items: ["clients", "keydbcli", "protocol", "gopher"]}, - {type: 'category', label: 'More', items: ["ARM", "faq", "memory-optimization", "license"]} + {type: 'category', label: 'More', items: [ + {type: 'link', label: 'KeyDB Release Notes (Changelog)', href: 'https://github.com/Snapchat/KeyDB/releases'}, + "ARM", "faq", "memory-optimization", "license"]} ], };