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