#!/bin/sh
#it's no apache
#listens on port 8080
while true; do nc -l -p 8080 < test.html | sleep 4; killall -q nc; done

