summaryrefslogtreecommitdiffhomepage
path: root/test/python/host/wsgi.py
blob: 0a08bc360fcc0b3703ae4bba6a9c4b4be3492f08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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 []