Files
nginx-unit/test/python/mirror/wsgi.py
2018-02-20 20:34:41 +03:00

11 lines
315 B
Python

def application(environ, start_response):
content_length = int(environ.get('CONTENT_LENGTH', 0))
body = bytes(environ['wsgi.input'].read(content_length))
start_response('200', [
('Content-Type', environ.get('CONTENT_TYPE')),
('Content-Length', str(len(body)))
])
return [body]