From: Bryan Date: Wed, 15 Jan 2014 05:15:58 +0000 (-0500) Subject: FQDN fails, so just use the domain names without trailing period X-Git-Tag: release-20150131~260 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f4415bdc92c1c443245d2eee68d6524f90847867;p=oweals%2Fkarmaworld.git FQDN fails, so just use the domain names without trailing period --- diff --git a/karmaworld/settings/common.py b/karmaworld/settings/common.py index fea3ae2..f6b2b29 100644 --- a/karmaworld/settings/common.py +++ b/karmaworld/settings/common.py @@ -24,8 +24,8 @@ SERIALIZATION_MODULES = {'json-pretty': 'karmaworld.apps.serializers.json_pretty ALLOWED_HOSTS = [ '127.0.0.1', # for dev systems / VMs, but should be safe enough 'localhost', # for dev systems / VMs, but should be safe enough - 'beta.karmanotes.org.', - 'www.karmanotes.org.', + 'beta.karmanotes.org', + 'www.karmanotes.org', 'karmanotes.org', ] ########## END SECURITY CONFIGURATION