mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-16 02:15:48 +00:00
5 lines
230 B
Python
5 lines
230 B
Python
# uwsgi --route-run remheader:Content-Length --route-run forcecl: --wsgi-file t/python/forcecl.py --http-socket :9090
|
|
def application(e, sr):
|
|
sr('200 OK', [('Content-Length', '1'), ('Content-Length', '2')])
|
|
return ['xxx']
|