From 25815c81bf57be6e004fff1cee8883eeeb2348c3 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Wed, 9 Nov 2022 11:03:03 +0530 Subject: [PATCH] Bring back the configurable host/port --- scripts/on_sd_start.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/on_sd_start.bat b/scripts/on_sd_start.bat index cf7cd535..d03aaf69 100644 --- a/scripts/on_sd_start.bat +++ b/scripts/on_sd_start.bat @@ -351,9 +351,9 @@ call python --version @set SD_UI_PATH=%cd%\ui @cd stable-diffusion -@if NOT DEFINED SD_UI_BIND_PORT set SD_UI_BIND_PORT=9000 -@if NOT DEFINED SD_UI_BIND_IP set SD_UI_BIND_PORT=0.0.0.0 -@uvicorn server:app --app-dir "%SD_UI_PATH%" --port 9000 --host 0.0.0.0 +@if "%SD_UI_BIND_PORT%" == "" set SD_UI_BIND_PORT=9000 +@if "%SD_UI_BIND_IP%" == "" set SD_UI_BIND_PORT=0.0.0.0 +@uvicorn server:app --app-dir "%SD_UI_PATH%" --port %SD_UI_BIND_PORT% --host %SD_UI_BIND_IP% @pause