From 9746203b557a3e0e84572f310c065588e2ef67c9 Mon Sep 17 00:00:00 2001 From: Deimos Date: Fri, 10 Aug 2018 16:14:49 -0600 Subject: [PATCH] Add redis.sessions.cookie_max_age to dev INI file I don't think there was any particular reason this wasn't included, and makes the behavior closer to what it is in production. --- tildes/development.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tildes/development.ini b/tildes/development.ini index a050c0f..68d64fe 100644 --- a/tildes/development.ini +++ b/tildes/development.ini @@ -29,6 +29,7 @@ redis.sessions.secret = completely_insecure_secret redis.sessions.unix_socket_path = %(redis.unix_socket_path)s redis.sessions.prefix = session: redis.sessions.cookie_secure = true +redis.sessions.cookie_max_age = 31536000 # Set session timeout to 10 mins by default, we'll extend it when people log in redis.sessions.timeout = 600