mkdir -p /tmp/testsite echo "hello from server $(date)" > /tmp/testsite/index.html cd /tmp/testsite nohup python3 -m http.server 80 --bind 0.0.0.0 > /tmp/http.log 2>&1 &