From 7f03c64efe9f025bfcbaac043ccf6ac182b0e7dd Mon Sep 17 00:00:00 2001 From: Guilherme Gondim Date: Fri, 18 Dec 2009 14:45:04 +0000 Subject: [PATCH] Corrigido script WSGI. --- etc/apache/django.wsgi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/etc/apache/django.wsgi b/etc/apache/django.wsgi index bb3763a..1494900 100755 --- a/etc/apache/django.wsgi +++ b/etc/apache/django.wsgi @@ -2,8 +2,7 @@ # -*- mode: python -*- import os, sys -sys.path.insert(0, os.path.abspath(os.path.dirname(__file__) + '../..')) - +sys.path.insert(0, '/var/aplicacoes/django/SIGI') os.environ['DJANGO_SETTINGS_MODULE'] = 'sigi.settings' import django.core.handlers.wsgi