chore: anvil.it.com → inouter.com
Some checks failed
CI/CD / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-03-27 16:18:26 +00:00
parent 51fd477179
commit 57ff3dc4fa

View File

@@ -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()