#!/bin/sh
/bin/echo -ne "HTTP/1.1 401 Authentication Required\r\n"
/bin/echo -ne "Cache-Control: no-cache\r\n"
/bin/echo -ne "Content-Type: text/plain; charset=ISO-8859-1\r\n"
/bin/echo -ne "WWW-Authenticate: Basic\r\n realm=\"foo\"\r\n"
/bin/echo -ne "\r\n"
/bin/echo -ne "Hello, World.\r\n"
