kpsul/apache/django.wsgi
Guillaume Seguin 8e1bf7b705 Initial import
2012-06-27 23:28:35 +02:00

8 lines
208 B
Python
Executable file

import os, sys
sys.path.append (os.path.expanduser ('~gestion/www'))
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()