Don't bind to all interfaces by default in web server

This commit is contained in:
lsileoni
2024-04-11 12:41:17 +03:00
parent d13efbbe23
commit 4815eb10a9
+2 -2
View File
@@ -36,5 +36,5 @@ cp -r "$ROOT_DIR/vm/v86/static/debian-9p-rootfs-flat/" "$ROOT_DIR/www/images/9p-
# Start a HTTP server
cd "$ROOT_DIR/www/" || exit
echo "Opening a server on port 8080"
python3 -m http.server 8080
echo "Opening a server on localhost with port 8080"
python3 -m http.server -b 127.0.0.1 8080