#!/bin/sh
#
# Only purpose is to send somebody to the Captive Portal
#
URL=${URL:-http://welcome.wleiden.net/portal}

# Send information to client
echo -e "HTTP/1.1 302 OK\r"
echo -e "Location: $URL\r"
echo -e "\r"

