Skip to content

Commit 57bee5f

Browse files
committed
NATIVE UP REACHEABLE ON LAN TEST
1 parent d8d7bec commit 57bee5f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

native-build/linux/launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _run_flask():
4949
import app as app_module
5050
waitress.serve(
5151
app_module.app,
52-
host="127.0.0.1",
52+
host="0.0.0.0",
5353
port=8000,
5454
threads=8,
5555
max_request_body_size=6 * 1024 * 1024 * 1024,

native-build/macos/launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _run_flask():
2626
import app as app_module
2727
waitress.serve(
2828
app_module.app,
29-
host="127.0.0.1",
29+
host="0.0.0.0",
3030
port=8000,
3131
threads=8,
3232
max_request_body_size=6 * 1024 * 1024 * 1024,

native-build/windows/launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _run_flask():
8989
import app as app_module
9090
waitress.serve(
9191
app_module.app,
92-
host="127.0.0.1",
92+
host="0.0.0.0",
9393
port=8000,
9494
threads=8,
9595
max_request_body_size=6 * 1024 * 1024 * 1024,

0 commit comments

Comments
 (0)