From 86dd334355ecd4838fbe9943451ba2f7bd4d2918 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 1 Aug 2015 21:14:02 +0000 Subject: [PATCH] Fixed an error in settings.py - Legacy-Id: 9956 --- ietf/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/settings.py b/ietf/settings.py index 7f5f0770b..ceb43e597 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -101,7 +101,7 @@ MEDIA_URL = 'https://www.ietf.org/' # Absolute path to the directory static files should be collected to. # Example: "/var/www/example.com/static/" -CDN_ROOT = "/a/www/www6s/lib/dt" + SERVE_CDN_FILES_LOCALLY_IN_DEV_MODE = True @@ -111,7 +111,7 @@ if SERVER_MODE != 'production' and SERVE_CDN_FILES_LOCALLY_IN_DEV_MODE: STATIC_ROOT = os.path.abspath(BASE_DIR + "/../static/") else: STATIC_URL = "https://www.ietf.org/lib/dt/%s/"%__version__ - STATIC_ROOT = CDN_ROOT + "%s/"%__version__ + STATIC_ROOT = "/a/www/www6s/lib/dt/%s/"%__version__ # Destination for components handled by djangobower COMPONENT_ROOT = BASE_DIR + "/externals/static/"