We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a9d9b commit 51490d0Copy full SHA for 51490d0
configuration/configuration.py
@@ -150,6 +150,10 @@ def read_secret(secret_name):
150
# are permitted to access most data in NetBox (excluding secrets) but not make any changes.
151
LOGIN_REQUIRED = os.environ.get('LOGIN_REQUIRED', 'False').lower() == 'true'
152
153
+# The length of time (in seconds) for which a user will remain logged into the web UI before being prompted to
154
+# re-authenticate. (Default: 1209600 [14 days])
155
+LOGIN_TIMEOUT = os.environ.get('LOGIN_TIMEOUT', None)
156
+
157
# Setting this to True will display a "maintenance mode" banner at the top of every page.
158
MAINTENANCE_MODE = os.environ.get('MAINTENANCE_MODE', 'False').lower() == 'true'
159
0 commit comments