2024-10-06 15:15:20 +00:00
|
|
|
# https://github.com/netbox-community/netbox-docker/blob/release/configuration/extra.py
|
|
|
|
|
|
|
|
CENSUS_REPORTING_ENABLED = False
|
|
|
|
LOGIN_PERSISTENCE = True
|
|
|
|
|
|
|
|
# BUG: pynetbox does not send token with version requests
|
|
|
|
# https://github.com/netbox-community/Device-Type-Library-Import/issues/134
|
|
|
|
# https://github.com/netbox-community/pynetbox/pull/641
|
|
|
|
LOGIN_REQUIRED = True
|
|
|
|
|
2024-10-06 23:52:28 +00:00
|
|
|
MEDIA_ROOT = "/opt/netbox/netbox/media" # Default /opt/netbox/media
|
2024-10-06 15:15:20 +00:00
|
|
|
TIME_ZONE = "America/Chicago"
|
|
|
|
|
|
|
|
PLUGINS = [
|
|
|
|
"netbox_acls",
|
2024-10-06 23:52:28 +00:00
|
|
|
# // "netbox_attachments",
|
2024-10-06 15:15:20 +00:00
|
|
|
"netbox_dns",
|
2024-10-10 04:12:49 +00:00
|
|
|
# // "netbox_interface_synchronization",
|
|
|
|
# // "netbox_lists",
|
2024-10-06 15:15:20 +00:00
|
|
|
"netbox_otp_plugin",
|
|
|
|
"netbox_reorder_rack",
|
|
|
|
# // "netbox_routing",
|
|
|
|
"netbox_secrets",
|
|
|
|
"netbox_topology_views",
|
2024-10-06 23:52:28 +00:00
|
|
|
# // "slurpit_netbox",
|
2024-10-06 15:15:20 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
PLUGINS_CONFIG = {
|
|
|
|
"netbox_acls": {"top_level_menu": True},
|
|
|
|
"netbox_otp_plugin": {"otp_required": False},
|
|
|
|
"netbox_secrets": {"top_level_menu": True},
|
|
|
|
"netbox_topology_views": {"allow_coordinates_saving": True},
|
|
|
|
}
|