Bind server on 0.0.0.0

This commit is contained in:
mathiascode 2019-09-21 07:06:31 +03:00
parent b8f3bd0028
commit d26c9493f7

View file

@ -1,6 +1,6 @@
#!/bin/sh
cd $HOME/plugins/WebConsole/client/
while true; do
python3 -m http.server $PORT --bind $HOST
python3 -m http.server $PORT --bind 0.0.0.0
sleep 1
done