From 3d287253c42f333d12e85bb96d4d1ad3ca70ce51 Mon Sep 17 00:00:00 2001 From: claycarpenter Date: Tue, 23 Nov 2010 22:39:56 +0000 Subject: [PATCH] Added some documentation about how to properly set the DJANGO_SETTINGS_MODULE. git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@618 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- osqa.wsgi.dist | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/osqa.wsgi.dist b/osqa.wsgi.dist index c3a269d..70c0da8 100644 --- a/osqa.wsgi.dist +++ b/osqa.wsgi.dist @@ -2,6 +2,10 @@ import os import sys sys.path.append('/path/to_dir_above') sys.path.append('/path/to_dir_above/osqa') +# The first part of this module name should be identical to the directory name +# of the OSQA source. For instance, if the full path to OSQA is +# /home/osqa/osqa-server, then the DJANGO_SETTINGS_MODULE should have a value +# of 'osqa-server.settings'. os.environ['DJANGO_SETTINGS_MODULE'] = 'osqa.settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() -- 2.45.2