From 0303a78a93bfa59ccffb7a89003eaf6ba946dac4 Mon Sep 17 00:00:00 2001 From: openhands Date: Tue, 21 Apr 2026 00:18:35 +0000 Subject: [PATCH] Add analytics to list of required domains for Enterprise QuickStart Add analytics. to the DNS A records table and DNS test script, following the same pattern as llm-proxy. Co-authored-by: openhands --- enterprise/quick-start.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enterprise/quick-start.mdx b/enterprise/quick-start.mdx index ac0fd0734..359c750c3 100644 --- a/enterprise/quick-start.mdx +++ b/enterprise/quick-start.mdx @@ -123,6 +123,7 @@ You will need a VM to host OpenHands Enterprise. Choose one of the options below | `app.` | `app.openhands.example.com` | | `auth.app.` | `auth.app.openhands.example.com` | | `llm-proxy.` | `llm-proxy.openhands.example.com` | + | `analytics.` | `analytics.openhands.example.com` | | `runtime-api.` | `runtime-api.openhands.example.com` | | `*.runtime.` | `*.runtime.openhands.example.com` | @@ -167,6 +168,7 @@ for h in \ "app.${BASE_DOMAIN}" \ "auth.app.${BASE_DOMAIN}" \ "llm-proxy.${BASE_DOMAIN}" \ + "analytics.${BASE_DOMAIN}" \ "runtime-api.${BASE_DOMAIN}"; do echo "[DNS] $h" getent hosts "$h" || nslookup "$h"