From cbcb315048d0279887002bc23ebee0a76a72afe8 Mon Sep 17 00:00:00 2001 From: Philip <42116482+PhilipAbed@users.noreply.github.com> Date: Wed, 1 Nov 2023 19:22:19 +0200 Subject: [PATCH] docs: Redis add redis encrypted example (#25536) Co-authored-by: Michael Kriese <michael.kriese@visualon.de> --- docs/usage/self-hosted-configuration.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/usage/self-hosted-configuration.md b/docs/usage/self-hosted-configuration.md index c06bb004c6..c240fb1a47 100644 --- a/docs/usage/self-hosted-configuration.md +++ b/docs/usage/self-hosted-configuration.md @@ -761,8 +761,15 @@ Override this object if you want to change the URLs that Renovate links to, e.g. If this value is set then Renovate will use Redis for its global cache instead of the local file system. The global cache is used to store lookup results (e.g. dependency versions and release notes) between repositories and runs. + +For non encrypted connections, + Example URL structure: `redis://[[username]:[password]]@localhost:6379/0`. +For TLS/SSL-enabled connections, use rediss prefix + +Example URL structure: `rediss://[[username]:[password]]@localhost:6379/0`. + ## repositories Elements in the `repositories` array can be an object if you wish to define more settings: -- GitLab