#!/bin/sh

cat <<EOF
Status: 503
Content-Type: text/html; charset=iso-8859-1

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>503 - Service temporarily unavailable</title>
</head>
<body>
<h1>503 - Service temporarily unavailable</h1>
<p>Please try again later</p>
</body>
</html>
EOF


