summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/support/modules/network_test_server/files/www/htdocs/qtest/cgi-bin/httpcachetest_etag304.cgi
blob: 22e5f83db28a262f7d012eea1206f33a836b25d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if [ ! -z "${HTTP_IF_NONE_MATCH}" ] ; then
    echo "Status: 304"
    echo ""
    exit
fi

echo "ETag: foo"
echo "Content-type: text/html"
echo ""
echo "Hello World!"