From 4367d8d1df461806946e756370c9cb73e94f1a1a Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 3 Feb 2016 21:00:25 +0100 Subject: It is now possible to give the address of a CDN server through the configuratin file (or a system variable). --- src/conf.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/conf.py') 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') -- cgit