summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/support/modules/network_test_server/files/www/cgi-bin/httpcachetest_expires500.cgi
blob: 295d554bac90b0059c2a3a71c85ef5b0cf793234 (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!"