From 73d49f8d63994f2ec0a01012da754fef312bc03f Mon Sep 17 00:00:00 2001 From: Harshit Jain <48647625+Harshit28j@users.noreply.github.com> Date: Thu, 22 Jan 2026 09:49:48 +0530 Subject: [PATCH] fix: UI 404 error when SERVER_ROOT_PATH is set (#19467) --- litellm/proxy/proxy_server.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index 8ae0712117..b3111f482c 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -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] )