summaryrefslogtreecommitdiffhomepage
path: root/test/python/host/wsgi.py
blob: db7de306dda08632664a9b96a595eb8d6291b403 (plain) (blame)
1
2
3
4
5
6
7
def application(env, start_response):
    start_response('200', [
        ('Content-Length', '0'),
        ('X-Server-Name', env.get('SERVER_NAME')),
        ('X-Http-Host', str(env.get('HTTP_HOST')))
    ])
    return []