Ver código fonte

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
Brian Gough 1 ano atrás
pai
commit
8785c5c265
1 arquivos alterados com 4 adições e 2 exclusões
  1. 4 2
      server-ce/config/custom-environment-variables.json

+ 4 - 2
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"
     }
   }
 }