summaryrefslogtreecommitdiffstats
path: root/tests/auto/qabstractnetworkcache/tests/httpcachetest_expires304.cgi
blob: 1c7de1cd77eab821a64c6ea3d7e2c60643fff9ba (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if [ ${HTTP_IF_MODIFIED_SINCE} == "Mon, 30 Oct 2028 14:19:41 GMT" ] ; then
    echo "Status: 304"
    echo ""
    exit;
fi

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