#!/usr/local/bin/python<br/>
import fastcgi
def my_wsgi_application(environ, start_response):
status = '200 OK'
output = 'Hello World!'
response_headers = [('Content-type', 'text/plain')]
start_response(status, response_headers)
return [output]<br/> <br/>application = my_wsgi_application
s = fastcgi.ThreadedWSGIServer(my_wsgi_application, workers=5)
s.serve_forever()