mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-09 04:21:42 +00:00
fix: UI 404 error when SERVER_ROOT_PATH is set (#19467)
This commit is contained in:
@@ -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]
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user