From 8785c5c2658b221352606a47dbbe141dfa513976 Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Fri, 1 Aug 2025 14:49:20 +0100 Subject: [PATCH] Merge pull request #25168 from overleaf/bg-history-redis-add-tls-to-sp-ce add SP/CE redis TLS configuration options for history-v1 for future use GitOrigin-RevId: 08d51b604f900559f999457d0c57d5e31021a27b --- server-ce/config/custom-environment-variables.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server-ce/config/custom-environment-variables.json b/server-ce/config/custom-environment-variables.json index f65f74ae2b..feac03d270 100644 --- a/server-ce/config/custom-environment-variables.json +++ b/server-ce/config/custom-environment-variables.json @@ -50,12 +50,14 @@ "history": { "host": "OVERLEAF_REDIS_HOST", "password": "OVERLEAF_REDIS_PASS", - "port": "OVERLEAF_REDIS_PORT" + "port": "OVERLEAF_REDIS_PORT", + "tls": "OVERLEAF_REDIS_TLS" }, "lock": { "host": "OVERLEAF_REDIS_HOST", "password": "OVERLEAF_REDIS_PASS", - "port": "OVERLEAF_REDIS_PORT" + "port": "OVERLEAF_REDIS_PORT", + "tls": "OVERLEAF_REDIS_TLS" } } }