e3f16e7a42
to make it work with our new docker-based test server. Change-Id: I76345a2d3d768b8a571f2c85e69f6a21e9a96d7e Reviewed-by: Ryan Chu <ryan.chu@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
12 lines
248 B
Bash
Executable File
12 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
if [ ${HTTP_IF_MODIFIED_SINCE} == "Sat, 31 Oct 1981 06:00:00 GMT" ] ; then
|
|
echo "Status: 304"
|
|
echo ""
|
|
exit;
|
|
fi
|
|
|
|
echo "Last-Modified: Sat, 31 Oct 1981 06:00:00 GMT"
|
|
echo "Content-type: text/html";
|
|
echo ""
|
|
echo "Hello World!"
|