Files
nginx-unit/test/python/client_ip/wsgi.py
2021-08-12 08:23:23 +00:00

5 lines
151 B
Python

def application(env, start_response):
ip = env['REMOTE_ADDR'].encode()
start_response('200', [('Content-Length', str(len(ip)))])
return ip