From 5090c3d38b0c7decfcf48cc675c024d6fead2c91 Mon Sep 17 00:00:00 2001 From: heartsucker Date: Thu, 5 Oct 2017 10:41:16 +0200 Subject: [PATCH] added SESSION_EXPIRATION_MINUTES to example config --- securedrop/config.py.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/securedrop/config.py.example b/securedrop/config.py.example index 9eb9dab691..5d37be1155 100644 --- a/securedrop/config.py.example +++ b/securedrop/config.py.example @@ -89,3 +89,6 @@ DATABASE_FILE = os.path.join(SECUREDROP_DATA_ROOT, 'db.sqlite') #SUPPORTED_LOCALES = ['en_US', 'fr_FR', 'nb_NO'] # Which of the available locales should be displayed by default ? DEFAULT_LOCALE = 'en_US' + +# How long a session is valid before it expires and logs a user out +SESSION_EXPIRATION_MINUTES = 30