aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/conf.py b/src/conf.py
index 8acdeef6..8ee77ceb 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -107,6 +107,8 @@ WEBSERVER_HOST = config.get('webserver', 'host')
WEBSERVER_PORT = config.getint('webserver', 'port')
WEBSERVER_SECRET = config.get('webserver', 'secret')
+CDN_ADDRESS = config.get('cdn', 'address')
+
NOTIFICATION_EMAIL = config.get('notification', 'notification_email')
NOTIFICATION_HOST = config.get('notification', 'host')
NOTIFICATION_PORT = config.getint('notification', 'port')
bgstack15