summaryrefslogtreecommitdiffstats
path: root/tests/testserver/apache2/testdata/www/cgi-bin/httpcachetest_expires500.cgi
blob: 66a3741641015065794dee39bc369fa40d9e5545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
if [ "${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!"