From 554f0c79a4e953195c300dd08856309b6e460c8e Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Sat, 19 Aug 2023 14:31:28 -0400 Subject: [PATCH] update redis doc --- docs/self-hosting/configuration/redis.mdx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/docs/self-hosting/configuration/redis.mdx b/docs/self-hosting/configuration/redis.mdx index 2eaf8e2b8..6013cab87 100644 --- a/docs/self-hosting/configuration/redis.mdx +++ b/docs/self-hosting/configuration/redis.mdx @@ -1,6 +1,6 @@ --- title: "Configure Redis" -description: "How to add Redis to your self-hosted Infisical." +description: "Learn to configure Redis with your self hosted Infisical" --- ## Why Redis? @@ -8,7 +8,7 @@ As the features and use case of Infisical have grown, the need for a fast and re By adding Redis to Infisical, we can now support more complex workflows such as queuing system to run long running asynchronous tasks, cron jobs, and access reliable cache to speed up frequently used resources. - Starting with Infisical version v0.XX.X, Redis will be required to fully use Infisical + Starting with Infisical version v0.31.0, Redis will be required to fully use Infisical ### Adding Redis to your self hosted instance of Infisical @@ -51,8 +51,12 @@ To add Redis to your self hosted instance, follow the instructions for the deplo ``` wget -O docker-compose.yml https://raw.githubusercontent.com/Infisical/infisical/main/docker-compose.yml ``` + 2. Add Redis environment variable to your .env file + ```.env .env + REDIS_URL=redis://redis:6379 + ``` - 2. Restart your docker compose services + 3. Restart your docker compose services This standalone version of Infisical does not have an internal Redis service. To configure Redis with your Infisical instance, you must connect to a external Redis service by setting the connection string as an environment variable. @@ -73,4 +77,7 @@ To add Redis to your self hosted instance, follow the instructions for the deplo Redis environment variable name: `REDIS_URL` - \ No newline at end of file + + +## Support +If you have questions or need support, please join our [slack channel](https://infisical-users.slack.com) and one of our teammates will be happy to guide you. \ No newline at end of file