forked from netbox-community/netbox-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configuration settings introduced between 2.8.1 and 2.8.9
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,10 @@ allowedHosts: | |
admins: [] | ||
# - ['John Doe', '[email protected]'] | ||
|
||
# URL schemes that are allowed within links in NetBox | ||
allowedUrlSchemes: [file, ftp, ftps, http, https, irc, mailto, sftp, ssh, tel, | ||
telnet, tftp, vnc, xmpp] | ||
|
||
banner: | ||
# Optionally display a persistent banner at the top and/or bottom of every | ||
# page. HTML is allowed. | ||
|
@@ -94,6 +98,14 @@ exemptViewPermissions: [] | |
# - dcim.region | ||
# - ipam.prefix | ||
|
||
# HTTP proxies NetBox should use when sending outbound HTTP requests (e.g. for | ||
# webhooks). | ||
httpProxies: null | ||
|
||
# IP addresses recognized as internal to the system. The debugging toolbar will | ||
# be available only to clients accessing NetBox from an internal IP. | ||
internalIPs: ['127.0.0.1', '::1'] | ||
|
||
# Enable custom logging. Please see the Django documentation for detailed | ||
# guidance on configuring custom logs: | ||
# https://docs.djangoproject.com/en/1.11/topics/logging/ | ||
|
@@ -142,6 +154,11 @@ pluginsConfig: {} | |
# IPv4 by default. Set this to True to prefer IPv4 instead. | ||
preferIPv4: false | ||
|
||
# Rack elevation size defaults, in pixels. For best results, the ratio of width | ||
# to height should be roughly 10:1. | ||
rackElevationDefaultUnitHeight: 22 | ||
rackElevationDefaultUnitWidth: 220 | ||
|
||
# Remote authentication support | ||
remoteAuth: | ||
enabled: false | ||
|