Update the WSGI to use production

This commit is contained in:
2011-05-27 14:53:16 +01:00
parent e385ec4d23
commit 814392001f

View File

@@ -3,5 +3,5 @@ import os
import django.core.handlers.wsgi
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "app")))
os.environ['DJANGO_SETTINGS_MODULE'] = 'app.settings'
os.environ['DJANGO_SETTINGS_MODULE'] = 'app.conf.production'
application = django.core.handlers.wsgi.WSGIHandler()