#!/usr/bin/python2.4 import sys sys.path.append("/home/hendry/fastcgi.dabase.com/django_src") from fcgi import WSGIServer def test_app(environ, start_response): start_response('200 OK', [('Content-Type', 'text/plain')]) yield 'Hello, world!\n' WSGIServer(test_app).run()