summaryrefslogtreecommitdiffstats
path: root/cnprog.wsgi
diff options
context:
space:
mode:
Diffstat (limited to 'cnprog.wsgi')
-rw-r--r--cnprog.wsgi7
1 files changed, 4 insertions, 3 deletions
diff --git a/cnprog.wsgi b/cnprog.wsgi
index a3d332f2..bd3745ee 100644
--- a/cnprog.wsgi
+++ b/cnprog.wsgi
@@ -1,7 +1,8 @@
+#example wsgi setup script
import os
import sys
-sys.path.append('/var/www/vhosts/default/htdocs')
-sys.path.append('/var/www/vhosts/default/htdocs/forum')
-os.environ['DJANGO_SETTINGS_MODULE'] = 'forum.settings'
+sys.path.append('/path/above_forum')
+sys.path.append('/path/above_forum/forum_dir')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'forum_dir.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()