From edaa2c168a35ac7685e742a418c778f01254bd2f Mon Sep 17 00:00:00 2001 From: Agraphie Date: Sat, 8 Feb 2020 13:55:31 +0100 Subject: [PATCH] Move redis comment to different line The comment in the variable caused redis to use `"0" #always use quotes` as redis db index instead of just "0" --- .env.example | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index fb1d526bc5..8378fe99a6 100644 --- a/.env.example +++ b/.env.example @@ -73,7 +73,8 @@ SESSION_DRIVER=file REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379 -REDIS_DB="0" # always use quotes +# always use quotes and make sure redis db "0" and "1" exists. Otherwise change accordingly. +REDIS_DB="0" REDIS_CACHE_DB="1" # Cookie settings. Should not be necessary to change these.