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

8 lines
177 B
Python

def application(environ, start_response):
start_response('200', [
('Content-Length', '0'),
('Server-Port', environ.get('SERVER_PORT'))
])
return []