SERVING.............................. 1234 PORT

This commit is contained in:
fred 2022-10-21 18:15:11 +02:00
parent e9adb470d9
commit 20f18a20bd
1 changed files with 4 additions and 2 deletions

View File

@ -33,13 +33,15 @@ PORT=12345
HOMEPAGE="$HOME/.zen/Astroport.ONE/templates/instascan.html"
while true; do
if [[ $HOMEPAGE ]]; then
echo "SERVING.............................. 1234 PORT"
if [[ $HOMEPAGE != "" ]]; then
echo "HOMEPAGE"
echo "HTTP/1.1 200 Everything Is Just Fine
Server: Astroport
Content-Type: text/html; charset=UTF-8" > $HOME/.zen/tmp/myIP.http.${MOATS}
cat $HOMEPAGE >> $HOME/.zen/tmp/myIP.http.${MOATS}
else
echo "WAITING PAGE"
# REPLACE myIP in http response template
sed "s~127.0.0.1:12345~$myIP:$PORT~g" $HOME/.zen/Astroport.ONE/templates/index.http > ~/.zen/tmp/myIP.http.${MOATS}
fi