From c9d9c7349eacc182d1ca5ed2492f9ef354294734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=A4der?= Date: Wed, 9 Jan 2019 09:03:24 +0100 Subject: [PATCH] Remove duplicated entry in `configuration.py` --- configuration/configuration.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/configuration/configuration.py b/configuration/configuration.py index 63b6ba9..c868cac 100644 --- a/configuration/configuration.py +++ b/configuration/configuration.py @@ -105,10 +105,6 @@ LOGGING = {} # are permitted to access most data in NetBox (excluding secrets) but not make any changes. LOGIN_REQUIRED = os.environ.get('LOGIN_REQUIRED', 'False').lower() == 'true' -# Base URL path if accessing NetBox within a directory. For example, if installed at http://example.com/netbox/, set: -# BASE_PATH = 'netbox/' -BASE_PATH = os.environ.get('BASE_PATH', '') - # Setting this to True will display a "maintenance mode" banner at the top of every page. MAINTENANCE_MODE = os.environ.get('MAINTENANCE_MODE', 'False').lower() == 'true'