You've already forked netbox-docker
mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-11-18 11:20:54 +03:00
Allows configuration the new API_TOKEN_PEPPERS setting from an ENV variable or secret file. Feature request: https://github.com/netbox-community/netbox/issues/20210 Pull request: https://github.com/netbox-community/netbox/pull/20477
17 lines
274 B
Python
17 lines
274 B
Python
LOGGING = {
|
|
'version': 1,
|
|
'disable_existing_loggers': True
|
|
}
|
|
|
|
PLUGINS = [
|
|
'netbox.tests.dummy_plugin',
|
|
]
|
|
|
|
ALLOW_TOKEN_RETRIEVAL = True
|
|
|
|
DEFAULT_PERMISSIONS = {}
|
|
|
|
API_TOKEN_PEPPERS = {
|
|
1: 'TEST-VALUE-DO-NOT-USE-TEST-VALUE-DO-NOT-USE-TEST-VALUE-DO-NOT-USE',
|
|
}
|