Fix typo in binding of host/ip

This commit is contained in:
cmdr2 2022-11-09 11:08:25 +05:30
parent ad31be8344
commit 65587536ab

View File

@ -351,9 +351,9 @@ call python --version
@set SD_UI_PATH=%cd%\ui
@cd stable-diffusion
@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 9000 --host 0.0.0.0
@if NOT DEFINED SD_UI_BIND_PORT set SD_UI_BIND_PORT=9000
@if NOT DEFINED SD_UI_BIND_IP set SD_UI_BIND_IP=0.0.0.0
@uvicorn server:app --app-dir "%SD_UI_PATH%" --port %SD_UI_BIND_PORT% --host %SD_UI_BIND_IP%
@pause