40 lines
924 B
Python
40 lines
924 B
Python
###################################################################
|
|
# This file serves as a base configuration for testing purposes #
|
|
# only. It is not intended for production use. #
|
|
###################################################################
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
DATABASE = {
|
|
'NAME': 'netbox',
|
|
'USER': 'netbox',
|
|
'PASSWORD': 'J5brHrAXFLQSif0K',
|
|
'HOST': 'localhost',
|
|
'PORT': '',
|
|
'CONN_MAX_AGE': 300,
|
|
}
|
|
|
|
DEBUG = True
|
|
|
|
PLUGINS = [
|
|
'netbox_topology_views',
|
|
]
|
|
|
|
REDIS = {
|
|
'tasks': {
|
|
'HOST': 'localhost',
|
|
'PORT': 6379,
|
|
'PASSWORD': 't4Ph722qJ5QHeQ1qfu36',
|
|
'DATABASE': 0,
|
|
'SSL': False,
|
|
},
|
|
'caching': {
|
|
'HOST': 'localhost',
|
|
'PORT': 6378,
|
|
'PASSWORD': 'H733Kdjndks81',
|
|
'DATABASE': 1,
|
|
'SSL': False,
|
|
}
|
|
}
|
|
|
|
SECRET_KEY = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789' |