From 50dfd2484f3894ff8811f39183a1ae1be878ad05 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Wed, 18 Jan 2023 18:08:23 -0600 Subject: [PATCH] Added simple HTML document to identify the server should someone hit the web port with a browser. --- joeybuild.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/joeybuild.sh b/joeybuild.sh index fbb6ab7..27c9319 100755 --- a/joeybuild.sh +++ b/joeybuild.sh @@ -395,6 +395,9 @@ function startBuildServer() { fi done + # Identify ourselves. + echo "JoeyBuild ServerThis is a JoeyLib Build Server." > dist/index.html + # Start the PHP web server if it's not already running. php -S 0.0.0.0:${G_HTTP_PORT} -t dist >> ${LOG} 2>&1 &