Files
nginx-unit/test/python/forwarded_header/wsgi.py
2022-06-20 17:19:35 +08:00

11 lines
260 B
Python

def application(env, start_response):
start_response(
'200',
[
('Content-Length', '0'),
('Remote-Addr', env.get('REMOTE_ADDR')),
('Url-Scheme', env.get('wsgi.url_scheme')),
],
)
return []