From 255889288ccbe8145cab756f1fc9ca9a150085b5 Mon Sep 17 00:00:00 2001 From: Tim Oliver Rabl Date: Fri, 30 Oct 2020 23:06:42 +0100 Subject: [PATCH] Rename SESSION_FILE_PATH default environment variable in configration.py --- configuration/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/configuration.py b/configuration/configuration.py index 639e1b6..9d2e476 100644 --- a/configuration/configuration.py +++ b/configuration/configuration.py @@ -233,7 +233,7 @@ SCRIPTS_ROOT = environ.get('SCRIPTS_ROOT', '/etc/netbox/scripts') # By default, NetBox will store session data in the database. Alternatively, a file path can be specified here to use # local file storage instead. (This can be useful for enabling authentication on a standby instance with read-only # database access.) Note that the user as which NetBox runs must have read and write permissions to this path. -SESSION_FILE_PATH = environ.get('REPORTS_ROOT', None) +SESSION_FILE_PATH = environ.get('SESSIONS_ROOT', None) # Time zone (default: UTC) TIME_ZONE = environ.get('TIME_ZONE', 'UTC')