From d26c9493f7bc52748d77594902f5ebf730437282 Mon Sep 17 00:00:00 2001 From: mathiascode Date: Sat, 21 Sep 2019 07:06:31 +0300 Subject: [PATCH] Bind server on 0.0.0.0 --- script/webconsole | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/webconsole b/script/webconsole index b03dfd7..c6b2d8d 100755 --- a/script/webconsole +++ b/script/webconsole @@ -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