Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def handler(request):
- request.stdout.write('\r\n'.join((
- 'Status: 200 OK',
- 'Content-type: text/plain',
- '',
- 'Hello, World!',
- )))
- if __name__ == '__main__':
- from gevent_fastcgi.server import FastCGIServer
- FastCGIServer('/path/to/unix/socket', handler).serve_forever()
Advertisement
Add Comment
Please, Sign In to add comment