diff --git a/settings.py b/settings.py index 49964faa4..b2d0de765 100644 --- a/settings.py +++ b/settings.py @@ -21,6 +21,11 @@ DEBUG = True TEMPLATE_DEBUG = DEBUG +ALLOWED_HOSTS = [ + '.comics.org', + '.comics.org.', # Allow FQDN and subdomains. Can be dropped in 1.7 +] + # absolute path to the directory that holds templates. TEMPLATE_DIRS = ( abspath(join(dirname(__file__), 'templates')), abspath(join(dirname(__file__), 'apps', 'voting', 'templates')),)