Files
nginx-unit/test/python/custom_header/wsgi.py
2018-03-16 17:45:25 +03:00

8 lines
186 B
Python

def application(environ, start_response):
start_response('200', [
('Content-Length', '0'),
('Custom-Header', environ.get('HTTP_CUSTOM_HEADER'))
])
return []