fix: UI 404 error when SERVER_ROOT_PATH is set (#19467)

This commit is contained in:
Harshit Jain
2026-01-21 20:19:48 -08:00
committed by GitHub
parent 0e738a5027
commit 73d49f8d63
+1 -2
View File
@@ -545,7 +545,7 @@ except ImportError:
enterprise_proxy_config = None
###################
server_root_path = os.getenv("SERVER_ROOT_PATH", "")
server_root_path = get_server_root_path()
_license_check = LicenseCheck()
premium_user: bool = _license_check.is_premium()
premium_user_data: Optional["EnterpriseLicenseData"] = (
@@ -823,7 +823,6 @@ app = FastAPI(
title=_title,
description=_description,
version=version,
root_path=server_root_path, # check if user passed root path, FastAPI defaults this value to ""
lifespan=proxy_startup_event, # type: ignore[reportGeneralTypeIssues]
)