#!/usr/bin/python import sys sys.path += ['/home/rt10/django-projects'] sys.path += ['/home/rt10/django-projects/remembertheten'] from fcgi import WSGIServer from django.core.handlers.wsgi import WSGIHandler import os os.environ['DJANGO_SETTINGS_MODULE'] = 'remembertheten.settings' os.environ['PYTHON_EGG_CACHE'] = '/home/rt10/.python-eggs' WSGIServer(WSGIHandler()).run()