From 0894daf3fc761f7c0d7c6afd3b326ee76b5a6ec9 Mon Sep 17 00:00:00 2001 From: infra Date: Wed, 11 Jun 2025 11:17:45 -0400 Subject: [PATCH] docs: add mount prefix environment variable --- docs/docs/cloud/reference/env_var.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/docs/cloud/reference/env_var.md b/docs/docs/cloud/reference/env_var.md index 0b94c04ad..e227ce559 100644 --- a/docs/docs/cloud/reference/env_var.md +++ b/docs/docs/cloud/reference/env_var.md @@ -123,3 +123,11 @@ Defaults to `''`. Set `REDIS_CLUSTER` to `True` to enable Redis Cluster mode. When enabled, the system will connect to Redis using cluster mode. This is useful when connecting to a Redis Cluster deployment. Defaults to `False`. + +## `MOUNT_PREFIX` + +!!! info "Only Allowed in Self-Hosted Deployments" + +Set `MOUNT_PREFIX` to serve the LangGraph Server under a specific path prefix. This is useful for deployments where the server is behind a reverse proxy or load balancer that requires a specific path prefix. + +For example, if the server is to be served under `https://example.com/langgraph`, set `MOUNT_PREFIX` to `/langgraph`.