summaryrefslogtreecommitdiffstats
path: root/tests/auto/qabstractnetworkcache/tests/httpcachetest_expires500.cgi
blob: 9615c4f0bdba1504619981c1def9762346e94757 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if [ ! -z ${HTTP_IF_MODIFIED_SINCE} ] ; then
    echo "Status: 500"
    echo ""
    exit;
fi

echo "Expires: Mon, 30 Oct 2028 14:19:41 GMT"
echo "Content-type: text/html";
echo ""
echo "Hello World!"