2020-10-20 20:11:10 +02:00
|
|
|
####
|
|
|
|
## We recommend to not edit this file.
|
|
|
|
## Create separate files to overwrite the settings.
|
|
|
|
## See `extra.py` as an example.
|
|
|
|
####
|
|
|
|
|
2019-06-21 22:47:09 +02:00
|
|
|
import re
|
2020-10-18 02:35:22 +02:00
|
|
|
from os import environ
|
2021-02-08 11:59:33 +01:00
|
|
|
from os.path import abspath, dirname, join
|
2020-10-18 02:35:22 +02:00
|
|
|
|
|
|
|
# For reference see https://netbox.readthedocs.io/en/stable/configuration/
|
|
|
|
# Based on https://github.com/netbox-community/netbox/blob/master/netbox/netbox/configuration.example.py
|
2018-02-22 11:58:36 +01:00
|
|
|
|
|
|
|
# Read secret from file
|
2020-10-18 02:35:22 +02:00
|
|
|
def _read_secret(secret_name, default = None):
|
2018-02-22 11:58:36 +01:00
|
|
|
try:
|
|
|
|
f = open('/run/secrets/' + secret_name, 'r', encoding='utf-8')
|
|
|
|
except EnvironmentError:
|
2020-05-13 14:44:41 +02:00
|
|
|
return default
|
2018-02-22 11:58:36 +01:00
|
|
|
else:
|
|
|
|
with f:
|
|
|
|
return f.readline().strip()
|
|
|
|
|
2020-10-18 02:35:22 +02:00
|
|
|
_BASE_DIR = dirname(dirname(abspath(__file__)))
|
2018-02-22 11:58:36 +01:00
|
|
|
|
|
|
|
#########################
|
|
|
|
# #
|
|
|
|
# Required settings #
|
|
|
|
# #
|
|
|
|
#########################
|
|
|
|
|
|
|
|
# This is a list of valid fully-qualified domain names (FQDNs) for the NetBox server. NetBox will not permit write
|
|
|
|
# access to the server via any other hostnames. The first FQDN in the list will be treated as the preferred name.
|
|
|
|
#
|
|
|
|
# Example: ALLOWED_HOSTS = ['netbox.example.com', 'netbox.internal.local']
|
2020-10-18 02:35:22 +02:00
|
|
|
ALLOWED_HOSTS = environ.get('ALLOWED_HOSTS', '*').split(' ')
|
2018-02-22 11:58:36 +01:00
|
|
|
|
2020-10-18 02:35:22 +02:00
|
|
|
# PostgreSQL database configuration. See the Django documentation for a complete list of available parameters:
|
|
|
|
# https://docs.djangoproject.com/en/stable/ref/settings/#databases
|
2018-02-22 11:58:36 +01:00
|
|
|
DATABASE = {
|
2021-02-08 11:59:33 +01:00
|
|
|
'NAME': environ.get('DB_NAME', 'netbox'), # Database name
|
|
|
|
'USER': environ.get('DB_USER', ''), # PostgreSQL username
|
2020-10-20 21:36:40 +02:00
|
|
|
'PASSWORD': _read_secret('db_password', environ.get('DB_PASSWORD', '')),
|
2021-02-08 11:59:33 +01:00
|
|
|
# PostgreSQL password
|
|
|
|
'HOST': environ.get('DB_HOST', 'localhost'), # Database server
|
|
|
|
'PORT': environ.get('DB_PORT', ''), # Database port (leave blank for default)
|
2020-10-18 02:35:22 +02:00
|
|
|
'OPTIONS': {'sslmode': environ.get('DB_SSLMODE', 'prefer')},
|
2021-02-08 11:59:33 +01:00
|
|
|
# Database connection SSLMODE
|
2020-10-18 02:35:22 +02:00
|
|
|
'CONN_MAX_AGE': int(environ.get('DB_CONN_MAX_AGE', '300')),
|
2021-02-08 11:59:33 +01:00
|
|
|
# Max database connection age
|
2021-06-24 17:21:08 +02:00
|
|
|
'DISABLE_SERVER_SIDE_CURSORS': environ.get('DB_DISABLE_SERVER_SIDE_CURSORS', 'False').lower() == 'true',
|
|
|
|
# Disable the use of server-side cursors transaction pooling
|
2018-02-22 11:58:36 +01:00
|
|
|
}
|
|
|
|
|
2020-10-18 02:35:22 +02:00
|
|
|
# Redis database settings. Redis is used for caching and for queuing background tasks such as webhook events. A separate
|
|
|
|
# configuration exists for each. Full connection details are required in both sections, and it is strongly recommended
|
|
|
|
# to use two separate database IDs.
|
2019-06-21 22:47:09 +02:00
|
|
|
REDIS = {
|
2020-04-02 05:41:35 +02:00
|
|
|
'tasks': {
|
2020-10-18 02:35:22 +02:00
|
|
|
'HOST': environ.get('REDIS_HOST', 'localhost'),
|
|
|
|
'PORT': int(environ.get('REDIS_PORT', 6379)),
|
2020-10-20 21:36:40 +02:00
|
|
|
'PASSWORD': _read_secret('redis_password', environ.get('REDIS_PASSWORD', '')),
|
2020-10-18 02:35:22 +02:00
|
|
|
'DATABASE': int(environ.get('REDIS_DATABASE', 0)),
|
|
|
|
'SSL': environ.get('REDIS_SSL', 'False').lower() == 'true',
|
2021-10-20 09:15:51 +02:00
|
|
|
'INSECURE_SKIP_TLS_VERIFY': environ.get('REDIS_INSECURE_SKIP_TLS_VERIFY', 'False').lower() == 'true',
|
2019-12-16 12:51:59 +01:00
|
|
|
},
|
|
|
|
'caching': {
|
2020-10-18 02:35:22 +02:00
|
|
|
'HOST': environ.get('REDIS_CACHE_HOST', environ.get('REDIS_HOST', 'localhost')),
|
|
|
|
'PORT': int(environ.get('REDIS_CACHE_PORT', environ.get('REDIS_PORT', 6379))),
|
2020-10-20 21:36:40 +02:00
|
|
|
'PASSWORD': _read_secret('redis_cache_password', environ.get('REDIS_CACHE_PASSWORD', environ.get('REDIS_PASSWORD', ''))),
|
2020-10-18 02:35:22 +02:00
|
|
|
'DATABASE': int(environ.get('REDIS_CACHE_DATABASE', 1)),
|
|
|
|
'SSL': environ.get('REDIS_CACHE_SSL', environ.get('REDIS_SSL', 'False')).lower() == 'true',
|
2021-10-20 09:15:51 +02:00
|
|
|
'INSECURE_SKIP_TLS_VERIFY': environ.get('REDIS_CACHE_INSECURE_SKIP_TLS_VERIFY', environ.get('REDIS_INSECURE_SKIP_TLS_VERIFY', 'False')).lower() == 'true',
|
2019-12-16 12:51:59 +01:00
|
|
|
},
|
2019-06-21 22:47:09 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 02:35:22 +02:00
|
|
|
# This key is used for secure generation of random numbers and strings. It must never be exposed outside of this file.
|
|
|
|
# For optimal security, SECRET_KEY should be at least 50 characters in length and contain a mix of letters, numbers, and
|
|
|
|
# symbols. NetBox will not run without this defined. For more information, see
|
|
|
|
# https://docs.djangoproject.com/en/stable/ref/settings/#std:setting-SECRET_KEY
|
2020-10-20 21:45:37 +02:00
|
|
|
SECRET_KEY = _read_secret('secret_key', environ.get('SECRET_KEY', ''))
|
2020-10-18 02:35:22 +02:00
|
|
|
|
|
|
|
|
2018-02-22 11:58:36 +01:00
|
|
|
#########################
|
|
|
|
# #
|
|
|
|
# Optional settings #
|
|
|
|
# #
|
|
|
|
#########################
|
|
|
|
|
|
|
|
# Specify one or more name and email address tuples representing NetBox administrators. These people will be notified of
|
|
|
|
# application errors (assuming correct email settings are provided).
|
|
|
|
ADMINS = [
|
|
|
|
# ['John Doe', 'jdoe@example.com'],
|
|
|
|
]
|
|
|
|
|
|
|
|
# Base URL path if accessing NetBox within a directory. For example, if installed at http://example.com/netbox/, set:
|
|
|
|
# BASE_PATH = 'netbox/'
|
2020-10-18 02:35:22 +02:00
|
|
|
BASE_PATH = environ.get('BASE_PATH', '')
|
2018-02-22 11:58:36 +01:00
|
|
|
|
|
|
|
# API Cross-Origin Resource Sharing (CORS) settings. If CORS_ORIGIN_ALLOW_ALL is set to True, all origins will be
|
|
|
|
# allowed. Otherwise, define a list of allowed origins using either CORS_ORIGIN_WHITELIST or
|
|
|
|
# CORS_ORIGIN_REGEX_WHITELIST. For more information, see https://github.com/ottoyiu/django-cors-headers
|
2020-10-18 02:35:22 +02:00
|
|
|
CORS_ORIGIN_ALLOW_ALL = environ.get('CORS_ORIGIN_ALLOW_ALL', 'False').lower() == 'true'
|
|
|
|
CORS_ORIGIN_WHITELIST = list(filter(None, environ.get('CORS_ORIGIN_WHITELIST', 'https://localhost').split(' ')))
|
|
|
|
CORS_ORIGIN_REGEX_WHITELIST = [re.compile(r) for r in list(filter(None, environ.get('CORS_ORIGIN_REGEX_WHITELIST', '').split(' ')))]
|
2018-02-22 11:58:36 +01:00
|
|
|
|
2022-04-07 16:09:27 +02:00
|
|
|
# Cross-Site-Request-Forgery-Attack settings. If Netbox is sitting behind a reverse proxy, you might need to set the CSRF_TRUSTED_ORIGINS flag.
|
|
|
|
# Django 4.0 requires to specify the URL Scheme in this setting. An example environment variable could be specified like:
|
|
|
|
# CSRF_TRUSTED_ORIGINS=https://demo.netbox.dev http://demo.netbox.dev
|
2022-04-08 15:36:49 +02:00
|
|
|
CSRF_TRUSTED_ORIGINS = list(filter(None, environ.get('CSRF_TRUSTED_ORIGINS', '').split(' ')))
|
2022-04-07 16:09:27 +02:00
|
|
|
|
2018-02-22 11:58:36 +01:00
|
|
|
# Set to True to enable server debugging. WARNING: Debugging introduces a substantial performance penalty and may reveal
|
|
|
|
# sensitive information about your installation. Only enable debugging while performing testing. Never enable debugging
|
|
|
|
# on a production system.
|
2020-10-18 02:35:22 +02:00
|
|
|
DEBUG = environ.get('DEBUG', 'False').lower() == 'true'
|
2018-02-22 11:58:36 +01:00
|
|
|
|
|
|
|
# Email settings
|
|
|
|
EMAIL = {
|
2020-10-18 02:35:22 +02:00
|
|
|
'SERVER': environ.get('EMAIL_SERVER', 'localhost'),
|
|
|
|
'PORT': int(environ.get('EMAIL_PORT', 25)),
|
|
|
|
'USERNAME': environ.get('EMAIL_USERNAME', ''),
|
2020-10-20 21:36:40 +02:00
|
|
|
'PASSWORD': _read_secret('email_password', environ.get('EMAIL_PASSWORD', '')),
|
2020-10-18 02:35:22 +02:00
|
|
|
'USE_SSL': environ.get('EMAIL_USE_SSL', 'False').lower() == 'true',
|
|
|
|
'USE_TLS': environ.get('EMAIL_USE_TLS', 'False').lower() == 'true',
|
|
|
|
'SSL_CERTFILE': environ.get('EMAIL_SSL_CERTFILE', ''),
|
|
|
|
'SSL_KEYFILE': environ.get('EMAIL_SSL_KEYFILE', ''),
|
|
|
|
'TIMEOUT': int(environ.get('EMAIL_TIMEOUT', 10)), # seconds
|
|
|
|
'FROM_EMAIL': environ.get('EMAIL_FROM', ''),
|
2018-02-22 11:58:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-21 22:47:09 +02:00
|
|
|
# Exempt certain models from the enforcement of view permissions. Models listed here will be viewable by all users and
|
|
|
|
# by anonymous users. List models in the form `<app>.<model>`. Add '*' to this list to exempt all models.
|
2020-10-18 02:35:22 +02:00
|
|
|
EXEMPT_VIEW_PERMISSIONS = list(filter(None, environ.get('EXEMPT_VIEW_PERMISSIONS', '').split(' ')))
|
2019-06-21 22:47:09 +02:00
|
|
|
|
2018-02-22 11:58:36 +01:00
|
|
|
# Enable custom logging. Please see the Django documentation for detailed guidance on configuring custom logs:
|
2020-10-18 02:35:22 +02:00
|
|
|
# https://docs.djangoproject.com/en/stable/topics/logging/
|
2018-02-22 11:58:36 +01:00
|
|
|
LOGGING = {}
|
|
|
|
|
|
|
|
# Setting this to True will permit only authenticated users to access any part of NetBox. By default, anonymous users
|
|
|
|
# are permitted to access most data in NetBox (excluding secrets) but not make any changes.
|
2020-10-18 02:35:22 +02:00
|
|
|
LOGIN_REQUIRED = environ.get('LOGIN_REQUIRED', 'False').lower() == 'true'
|
2018-02-22 11:58:36 +01:00
|
|
|
|
2020-06-16 20:27:59 +02:00
|
|
|
# The length of time (in seconds) for which a user will remain logged into the web UI before being prompted to
|
|
|
|
# re-authenticate. (Default: 1209600 [14 days])
|
2020-11-03 23:57:12 +01:00
|
|
|
LOGIN_TIMEOUT = int(environ.get('LOGIN_TIMEOUT', 1209600))
|
2020-06-16 20:27:59 +02:00
|
|
|
|
2018-02-22 11:58:36 +01:00
|
|
|
# The file path where uploaded media such as image attachments are stored. A trailing slash is not needed. Note that
|
|
|
|
# the default value of this setting is derived from the installed location.
|
2020-10-18 02:35:22 +02:00
|
|
|
MEDIA_ROOT = environ.get('MEDIA_ROOT', join(_BASE_DIR, 'media'))
|
2018-02-22 11:58:36 +01:00
|
|
|
|
2019-06-21 22:47:09 +02:00
|
|
|
# Expose Prometheus monitoring metrics at the HTTP endpoint '/metrics'
|
2020-10-18 02:35:22 +02:00
|
|
|
METRICS_ENABLED = environ.get('METRICS_ENABLED', 'False').lower() == 'true'
|
2019-06-21 22:47:09 +02:00
|
|
|
|
2020-10-18 02:35:22 +02:00
|
|
|
# Enable installed plugins. Add the name of each plugin to the list.
|
|
|
|
PLUGINS = []
|
|
|
|
|
|
|
|
# Plugins configuration settings. These settings are used by various plugins that the user may have installed.
|
|
|
|
# Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings.
|
|
|
|
PLUGINS_CONFIG = {
|
|
|
|
}
|
2018-02-22 11:58:36 +01:00
|
|
|
|
2020-10-18 02:35:22 +02:00
|
|
|
# Remote authentication support
|
2020-10-20 21:40:14 +02:00
|
|
|
REMOTE_AUTH_ENABLED = environ.get('REMOTE_AUTH_ENABLED', 'False').lower() == 'true'
|
|
|
|
REMOTE_AUTH_BACKEND = environ.get('REMOTE_AUTH_BACKEND', 'netbox.authentication.RemoteUserBackend')
|
|
|
|
REMOTE_AUTH_HEADER = environ.get('REMOTE_AUTH_HEADER', 'HTTP_REMOTE_USER')
|
|
|
|
REMOTE_AUTH_AUTO_CREATE_USER = environ.get('REMOTE_AUTH_AUTO_CREATE_USER', 'True').lower() == 'true'
|
|
|
|
REMOTE_AUTH_DEFAULT_GROUPS = list(filter(None, environ.get('REMOTE_AUTH_DEFAULT_GROUPS', '').split(' ')))
|
2020-10-18 02:35:22 +02:00
|
|
|
|
2020-03-28 05:30:26 +01:00
|
|
|
# This repository is used to check whether there is a new release of NetBox available. Set to None to disable the
|
|
|
|
# version check or use the URL below to check for release in the official NetBox repository.
|
|
|
|
# https://api.github.com/repos/netbox-community/netbox/releases
|
2020-10-18 02:35:22 +02:00
|
|
|
RELEASE_CHECK_URL = environ.get('RELEASE_CHECK_URL', None)
|
2020-03-28 05:30:26 +01:00
|
|
|
|
2018-02-22 11:58:36 +01:00
|
|
|
# The file path where custom reports will be stored. A trailing slash is not needed. Note that the default value of
|
|
|
|
# this setting is derived from the installed location.
|
2020-10-18 02:35:22 +02:00
|
|
|
REPORTS_ROOT = environ.get('REPORTS_ROOT', '/etc/netbox/reports')
|
|
|
|
|
|
|
|
# Maximum execution time for background tasks, in seconds.
|
|
|
|
RQ_DEFAULT_TIMEOUT = int(environ.get('RQ_DEFAULT_TIMEOUT', 300))
|
2018-02-22 11:58:36 +01:00
|
|
|
|
2019-10-14 09:47:18 +02:00
|
|
|
# The file path where custom scripts will be stored. A trailing slash is not needed. Note that the default value of
|
|
|
|
# this setting is derived from the installed location.
|
2020-10-18 02:35:22 +02:00
|
|
|
SCRIPTS_ROOT = environ.get('SCRIPTS_ROOT', '/etc/netbox/scripts')
|
|
|
|
|
|
|
|
# By default, NetBox will store session data in the database. Alternatively, a file path can be specified here to use
|
|
|
|
# local file storage instead. (This can be useful for enabling authentication on a standby instance with read-only
|
|
|
|
# database access.) Note that the user as which NetBox runs must have read and write permissions to this path.
|
2020-10-30 23:06:42 +01:00
|
|
|
SESSION_FILE_PATH = environ.get('SESSIONS_ROOT', None)
|
2019-10-14 09:47:18 +02:00
|
|
|
|
2018-02-22 11:58:36 +01:00
|
|
|
# Time zone (default: UTC)
|
2020-10-18 02:35:22 +02:00
|
|
|
TIME_ZONE = environ.get('TIME_ZONE', 'UTC')
|
2018-02-22 11:58:36 +01:00
|
|
|
|
|
|
|
# Date/time formatting. See the following link for supported formats:
|
2020-10-18 02:35:22 +02:00
|
|
|
# https://docs.djangoproject.com/en/stable/ref/templates/builtins/#date
|
|
|
|
DATE_FORMAT = environ.get('DATE_FORMAT', 'N j, Y')
|
|
|
|
SHORT_DATE_FORMAT = environ.get('SHORT_DATE_FORMAT', 'Y-m-d')
|
|
|
|
TIME_FORMAT = environ.get('TIME_FORMAT', 'g:i a')
|
|
|
|
SHORT_TIME_FORMAT = environ.get('SHORT_TIME_FORMAT', 'H:i:s')
|
|
|
|
DATETIME_FORMAT = environ.get('DATETIME_FORMAT', 'N j, Y g:i a')
|
|
|
|
SHORT_DATETIME_FORMAT = environ.get('SHORT_DATETIME_FORMAT', 'Y-m-d H:i')
|