mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
fix: UI 404 error when SERVER_ROOT_PATH is set (#19467)
This commit is contained in:
parent
0e738a5027
commit
73d49f8d63
1 changed files with 1 additions and 2 deletions
|
|
@ -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]
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue