#!/bin/bash
. testsuite/functions.sh
PORT=12340
run_weborf -b site1 -p $PORT --ip 127.0.0.2

if curl -s http://127.0.0.1:$PORT/robots.txt; then
    exit 1
fi

curl -s http://127.0.0.2:$PORT/robots.txt
