diff --git a/haproxy_mcp/config.py b/haproxy_mcp/config.py index 97bc971..218f238 100644 --- a/haproxy_mcp/config.py +++ b/haproxy_mcp/config.py @@ -39,7 +39,7 @@ CERTS_DIR: str = os.getenv("HAPROXY_CERTS_DIR", "/opt/haproxy/certs") CERTS_DIR_CONTAINER: str = os.getenv("HAPROXY_CERTS_DIR_CONTAINER", "/etc/haproxy/certs") ACME_HOME: str = os.getenv("ACME_HOME", os.path.expanduser("~/.acme.sh")) -# Custom multi-part TLDs (e.g., "it.com" treated as a TLD so "anvil.it.com" is a base domain) +# Custom multi-part TLDs (e.g., "it.com" treated as a TLD so "inouter.com" is a base domain) # Comma-separated list via env var, or default CUSTOM_TLDS: frozenset[str] = frozenset( t.strip() for t in os.getenv("HAPROXY_CUSTOM_TLDS", "it.com").split(",") if t.strip()