From 4111d1dff2768662996d7479ad46c4f486bab101 Mon Sep 17 00:00:00 2001 From: Keno Chou <75463608+KenoChou@users.noreply.github.com> Date: Sun, 20 Oct 2024 23:03:50 +0800 Subject: [PATCH] Update server.py fix the issue of being unable to access through the local IP address --- server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server.py b/server.py index ada6d90c..24e95493 100644 --- a/server.py +++ b/server.py @@ -833,6 +833,7 @@ class PromptServer(): scheme = "https" logging.info("Starting server\n") + addresses= ["0.0.0.0","8188"] for addr in addresses: address = addr[0] port = addr[1]