|
1 | 1 | #### |
2 | | -## This file contains extra configuration options that can't be configured |
3 | | -## directly through environment variables. |
| 2 | +# This file contains extra configuration options that can't be configured |
| 3 | +# directly through environment variables. |
4 | 4 | #### |
5 | 5 |
|
6 | | -## Specify one or more name and email address tuples representing NetBox administrators. These people will be notified of |
7 | | -## application errors (assuming correct email settings are provided). |
| 6 | +# Specify one or more name and email address tuples representing NetBox administrators. These people will be notified of |
| 7 | +# application errors (assuming correct email settings are provided). |
8 | 8 | # ADMINS = [ |
9 | 9 | # # ['John Doe', '[email protected]'], |
10 | 10 | # ] |
11 | 11 |
|
12 | 12 |
|
13 | | -## URL schemes that are allowed within links in NetBox |
| 13 | +# URL schemes that are allowed within links in NetBox |
14 | 14 | # ALLOWED_URL_SCHEMES = ( |
15 | 15 | # 'file', 'ftp', 'ftps', 'http', 'https', 'irc', 'mailto', 'sftp', 'ssh', 'tel', 'telnet', 'tftp', 'vnc', 'xmpp', |
16 | 16 | # ) |
17 | 17 |
|
18 | | -## Enable installed plugins. Add the name of each plugin to the list. |
| 18 | +# Enable installed plugins. Add the name of each plugin to the list. |
19 | 19 | # from netbox.configuration.configuration import PLUGINS |
20 | 20 | # PLUGINS.append('my_plugin') |
21 | 21 |
|
22 | | -## Plugins configuration settings. These settings are used by various plugins that the user may have installed. |
23 | | -## Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings. |
| 22 | +# Plugins configuration settings. These settings are used by various plugins that the user may have installed. |
| 23 | +# Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings. |
24 | 24 | # from netbox.configuration.configuration import PLUGINS_CONFIG |
25 | 25 | # PLUGINS_CONFIG['my_plugin'] = { |
26 | 26 | # 'foo': 'bar', |
27 | 27 | # 'buzz': 'bazz' |
28 | 28 | # } |
29 | 29 |
|
30 | 30 |
|
31 | | -## Remote authentication support |
| 31 | +# Remote authentication support |
32 | 32 | # REMOTE_AUTH_DEFAULT_PERMISSIONS = {} |
33 | 33 |
|
34 | 34 |
|
35 | | -## By default uploaded media is stored on the local filesystem. Using Django-storages is also supported. Provide the |
36 | | -## class path of the storage driver in STORAGE_BACKEND and any configuration options in STORAGE_CONFIG. For example: |
| 35 | +# By default uploaded media is stored on the local filesystem. Using Django-storages is also supported. Provide the |
| 36 | +# class path of the storage driver in STORAGE_BACKEND and any configuration options in STORAGE_CONFIG. For example: |
37 | 37 | # STORAGE_BACKEND = 'storages.backends.s3boto3.S3Boto3Storage' |
38 | 38 | # STORAGE_CONFIG = { |
39 | 39 | # 'AWS_ACCESS_KEY_ID': 'Key ID', |
|
43 | 43 | # } |
44 | 44 |
|
45 | 45 |
|
46 | | -## This file can contain arbitrary Python code, e.g.: |
| 46 | +# This file can contain arbitrary Python code, e.g.: |
47 | 47 | # from datetime import datetime |
48 | 48 | # now = datetime.now().strftime("%d/%m/%Y %H:%M:%S") |
49 | 49 | # BANNER_TOP = f'<marquee width="200px">This instance started on {now}.</marquee>' |
0 commit comments